Software /
code /
prosody
Annotate
spec/util_format_spec.lua @ 9893:15270547c91c
mod_storage_sql: Return cached count if only this is queried for
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 22 Mar 2019 02:18:54 +0100 |
parent | 9693:6ed0d6224d64 |
child | 10034:4fca92d60040 |
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")); |
9656
3da6cc927ee6
util.format: Tweak how nil values are handled
Kim Alvefur <zash@zash.se>
parents:
8620
diff
changeset
|
8 assert.equal("<nil>", format("%d")); |
3da6cc927ee6
util.format: Tweak how nil values are handled
Kim Alvefur <zash@zash.se>
parents:
8620
diff
changeset
|
9 assert.equal("<nil>", format("%q")); |
8620
84b73949fc30
util.format: Add test coverage for case of extra nil argument
Kim Alvefur <zash@zash.se>
parents:
8619
diff
changeset
|
10 assert.equal(" [<nil>]", format("", nil)); |
8619
b96b0141cb61
util.format: Fix tests to have expected value first
Kim Alvefur <zash@zash.se>
parents:
8383
diff
changeset
|
11 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
|
12 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
|
13 assert.equal("% [true]", format("%%", true)); |
9693
6ed0d6224d64
util.format: Serialize values for the %q format
Kim Alvefur <zash@zash.se>
parents:
9656
diff
changeset
|
14 assert.equal("{ }", format("%q", { })); |
8383 | 15 end); |
16 end); | |
17 end); |