1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-28 16:13:22 +00:00
CC-Tweaked/src/test/resources/test-rom/spec/programs/time_spec.lua

13 lines
376 B
Lua
Raw Normal View History

local capture = require "test_helpers".capture_program
describe("The time program", function()
it("displays time", function()
local time = textutils.formatTime(os.time())
local day = os.day()
2020-01-23 15:11:50 +00:00
expect(capture(stub, "time"))
2019-12-07 10:33:47 +00:00
:matches { ok = true, output = "The time is " .. time .. " on Day " .. day .. "\n", error = "" }
end)
end)