mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
8 lines
170 B
R
8 lines
170 B
R
source('gilded_rose.R')
|
|
|
|
test.foo <- function() {
|
|
items <- list( item('foo', 0, 0) )
|
|
items <- update_quality(items)
|
|
checkEquals('fixme', items[[1]]$name);
|
|
}
|