Updated tests.

This commit is contained in:
Bruce Hill 2018-02-09 18:24:14 -08:00
parent 7cb9ccc223
commit 291d7fd420

View File

@ -75,7 +75,8 @@ test("Testing tostring", function()
end)
test("Testing from_table", function()
assert(Vec:from_table({y=3,x=1}) == v)
assert(Vec:from_table(setmetatable({y=3}, {__index={x=1}})) == v)
assert(Vec:from_table({x=1}) == Vec(1, nil))
end)
test("Testing singletons", function()