This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,15 @@
return function()
local Event = require(script.Parent.Event)
it("should yield event objects when indexed", function()
expect(Event.MouseButton1Click).to.be.ok()
expect(Event.Touched).to.be.ok()
end)
it("should yield the same object when indexed again", function()
local a = Event.MouseButton1Click
local b = Event.MouseButton1Click
expect(a).to.equal(b)
end)
end