X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/f0b23dea771e2d9cb9a672a147c946f1ad539082..a3b2f88d60b3f1d2275170c616fc052b7a5df51a:/spec/strftime_spec.lua diff --git a/spec/strftime_spec.lua b/spec/strftime_spec.lua index a58a947..9d5d77a 100644 --- a/spec/strftime_spec.lua +++ b/spec/strftime_spec.lua @@ -1,7 +1,7 @@ local luatz = require "luatz.init" local time = 1234567890 local tt = luatz.gmtime(time) -describe("strftime", function() +describe("#strftime works the same as os.date", function() local strftime = luatz.strftime.strftime for i, spec in ipairs { "a", "A", "b", "B", "c", "C", "d", "D", "e", "F", @@ -22,3 +22,9 @@ describe("strftime", function() end) end end) +describe("#asctime", function() + local asctime = luatz.strftime.asctime + it("should format correctly", function() + assert.are.same("Fri Feb 13 23:31:30 2009\n", asctime(tt)) + end) +end)