Added test.

This commit is contained in:
Bruce Hill 2018-02-15 15:51:14 -08:00
parent 8634549e77
commit 99c379870f

View File

@ -101,6 +101,10 @@ test("Testing singletons", function()
assert(T1() ~= T2())
end)
test("Testing extra args", function()
assert(not pcall(function() Vec(1,2,3) end))
end)
test("Testing __add metamethod", function()
assert(v + Vec(5,6) == Vec(6,9))
end)