]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

spec/strftime: Generate format strings before tests, and use in test names
authordaurnimator <quae@daurnimator.com>
Mon, 18 Aug 2014 15:55:51 +0000 (11:55 -0400)
committerdaurnimator <quae@daurnimator.com>
Mon, 18 Aug 2014 15:55:51 +0000 (11:55 -0400)
spec/strftime_spec.lua

index 629e04a1d624c1fb3da291ce5ba35f16429f13f4..f598db16f18e952da9d995e6aaf69219cdeceb8d 100644 (file)
@@ -9,9 +9,9 @@ describe("strftime", function()
                "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 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