add gs
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
return function()
|
||||
local Change = require(script.Parent.Change)
|
||||
|
||||
it("should yield change listener objects when indexed", function()
|
||||
expect(Change.Text).to.be.ok()
|
||||
expect(Change.Selected).to.be.ok()
|
||||
end)
|
||||
|
||||
it("should yield the same object when indexed again", function()
|
||||
local a = Change.Text
|
||||
local b = Change.Text
|
||||
|
||||
expect(a).to.equal(b)
|
||||
end)
|
||||
end
|
||||
Reference in New Issue
Block a user