add gs
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
return function()
|
||||
it("should return a table", function()
|
||||
local action = require(script.Parent.GetCrossPlayEnabledFailed)
|
||||
|
||||
expect(action).to.be.a("table")
|
||||
end)
|
||||
|
||||
it("should return a table when called as a function", function()
|
||||
local action = require(script.Parent.GetCrossPlayEnabledFailed)()
|
||||
|
||||
expect(action).to.be.a("table")
|
||||
end)
|
||||
|
||||
it("should set the name", function()
|
||||
local action = require(script.Parent.GetCrossPlayEnabledFailed)
|
||||
|
||||
expect(action.name).to.equal("GetCrossPlayEnabledFailed")
|
||||
end)
|
||||
|
||||
it("should set the type", function()
|
||||
local action = require(script.Parent.GetCrossPlayEnabledFailed)()
|
||||
|
||||
expect(action.type).to.equal("GetCrossPlayEnabledFailed")
|
||||
end)
|
||||
end
|
||||
Reference in New Issue
Block a user