Added test for __index.
This commit is contained in:
parent
b58bd5a12e
commit
fbc31fecea
5
test.lua
5
test.lua
@ -126,6 +126,11 @@ test("Testing garbage collection", function()
|
|||||||
assert(collected)
|
assert(collected)
|
||||||
end)
|
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()
|
test("Testing similar class", function()
|
||||||
local FooVec = immutable({"x","y"}, {
|
local FooVec = immutable({"x","y"}, {
|
||||||
|
Loading…
Reference in New Issue
Block a user