X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/bbc7e867d92c185d6316bdd222202f357f8253a3..a3b2f88d60b3f1d2275170c616fc052b7a5df51a:/spec/strftime_spec.lua diff --git a/spec/strftime_spec.lua b/spec/strftime_spec.lua index 629e04a..9d5d77a 100644 --- a/spec/strftime_spec.lua +++ b/spec/strftime_spec.lua @@ -1,6 +1,7 @@ local luatz = require "luatz.init" local time = 1234567890 -describe("strftime", function() +local tt = luatz.gmtime(time) +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", @@ -8,10 +9,10 @@ describe("strftime", function() "R", --[["s",]] "S", "t", "T", "u", "U", "V", "w", "W", "y", "Y", "z", "Z" , "%" } do - local tt = luatz.gmtime(time) - it("Specifier "..spec.." is equivalent to os.date", function() - local f = "%"..spec - local osdf = "!%"..spec + local tt = tt:clone() + local f = "%"..spec + local osdf = "!%"..spec + it("format specifier '"..f.."' is equivalent to os.date('"..osdf.."')", function() for i=1, 365*12 do local t = time + 60*60*24*i tt.day = tt.day + 1 @@ -21,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)