From: daurnimator Date: Sun, 24 Aug 2014 02:29:38 +0000 (-0400) Subject: spec/strftime: add tests for asctime X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/1501ba7566a0069a72b4bcca7e60f1e51878c4e5 spec/strftime: add tests for asctime --- diff --git a/spec/strftime_spec.lua b/spec/strftime_spec.lua index a58a947..082dbff 100644 --- a/spec/strftime_spec.lua +++ b/spec/strftime_spec.lua @@ -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)