Programming environment for editing various of my live apps without restarting them.
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