driver.love/0099-test_approximate_up

6 lines
213 B
Plaintext

test_approximate_up = function()
check_eq(approximate_up(12, 1), 20, 'easy case')
-- when scale down ends up at 0
check_eq(approximate_up(2, 1), 10, 'below 5')
check_eq(approximate_up(7, 1), 10, 'above 5')
end