X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/1501ba7566a0069a72b4bcca7e60f1e51878c4e5..a3b2f88d60b3f1d2275170c616fc052b7a5df51a:/spec/strftime_spec.lua diff --git a/spec/strftime_spec.lua b/spec/strftime_spec.lua index 082dbff..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,7 +22,7 @@ describe("strftime", function() end) end end) -describe("asctime", function() +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))