Clients/Client2018/content/internal/AppShell/Modules/Shell/Actions/InsertScreen.spec.lua

44 lines
1.1 KiB
Lua

return function()
describe("require", function()
it("should create without errors", function()
require(script.Parent.InsertScreen)
end)
it("should set the name", function()
local action = require(script.Parent.InsertScreen)
expect(action.name).to.equal("InsertScreen")
end)
end)
describe("call", function()
it("should return a table when called as a function", function()
local action = require(script.Parent.InsertScreen)
action = action({})
expect(action).to.be.a("table")
end)
it("should set the type", function()
local action = require(script.Parent.InsertScreen)
action = action({})
expect(action.type).to.equal("InsertScreen")
end)
it("should set the item", function()
local action = require(script.Parent.InsertScreen)
local item = "foo"
action = action(item)
expect(action.item).to.equal("foo")
end)
it("should set the type and name to be equal", function()
local action = require(script.Parent.InsertScreen)
local actionItem = action({})
expect(actionItem.type).to.equal(action.name)
end)
end)
end