[spec] Add ToggleSwitch spec stub (#5450)

To protect against issues like #5448.
This commit is contained in:
Frans de Jonge
2019-10-06 21:33:48 +02:00
committed by GitHub
parent 513fd807b0
commit 521c4251f6

View File

@@ -0,0 +1,26 @@
describe("ToggleSwitch module", function()
local ToggleSwitch
setup(function()
require("commonrequire")
ToggleSwitch = require("ui/widget/toggleswitch")
end)
it("should toggle without args", function()
local config = {
onConfigChoose = function() end,
}
local switch = ToggleSwitch:new{
event = "ChangeSpec",
default_value = 2,
toggle = { "Finished", "Reading", "On hold" },
values = { 1, 2, 3 },
name = "spec_status",
alternate = false,
enabled = true,
config = config,
}
switch:togglePosition(1, true)
switch:onTapSelect(3)
end)
end)