Added type tests for lume.random()

This commit is contained in:
rxi 2014-03-18 12:04:36 +00:00
parent 2c3be23a2b
commit c537d00a47

View File

@ -82,6 +82,9 @@ end
-- lume.random
tests["lume.random"] = function()
testeq( type(lume.random()), "number" )
testeq( type(lume.random(1)), "number" )
testeq( type(lume.random(1, 2)), "number" )
end
-- lume.randomchoice