Added test for __index.

This commit is contained in:
Bruce Hill 2018-02-09 19:05:29 -08:00
parent b58bd5a12e
commit fbc31fecea

View File

@ -126,6 +126,11 @@ test("Testing garbage collection", function()
assert(collected)
end)
test("Testing stupid metamethods", function()
local Five = immutable({"x"}, {__index=function() return 5 end, derp = 99})
local f = Five(99)
assert(f.x == 5 and f.asdf == 5 and f.derp == 5)
end)
test("Testing similar class", function()
local FooVec = immutable({"x","y"}, {