This commit is contained in:
Mrrp 2024-12-10 16:26:49 -08:00
parent 18e0963d89
commit ea726ced89
6 changed files with 46 additions and 26 deletions

View file

View file

@ -36,10 +36,4 @@ describe("sanitytest", function()
assert.is_true(true, "Truthiness: true should be true")
assert.is_false(false, "Truthiness: false should be false")
end)
it("tests properties", function()
assert.has_property({a = 1, b = 2}, "a", "Properties: table should have property a")
assert.has_no_property({a = 1, b = 2}, "c", "Properties: table should not have property c")
end)
end)