Software /
code /
prosody
Annotate
spec/util_format_spec.lua @ 8619:b96b0141cb61
util.format: Fix tests to have expected value first
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 17 Mar 2018 19:43:20 +0100 |
parent | 8383:d967d6f2ad00 |
child | 8620:84b73949fc30 |
rev | line source |
---|---|
8383 | 1 local format = require "util.format".format; |
2 | |
3 describe("util.format", function() | |
4 describe("#format()", function() | |
5 it("should work", function() | |
8619
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
6 assert.equal("hello", format("%s", "hello")); |
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
7 assert.equal("<nil>", format("%s")); |
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
8 assert.equal("true", format("%s", true)); |
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
9 assert.equal("[true]", format("%d", true)); |
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
10 assert.equal("% [true]", format("%%", true)); |
8383 | 11 end); |
12 end); | |
13 end); |