Software /
code /
prosody
Annotate
spec/util_format_spec.lua @ 9540:8cdd7fec6aa7
mod_pep: Remove use of recipients table for signaling pending disco#items
It stored the caps hash as a string in the recipients table while
waiting for a disco#info response, then replaces it with the set of
nodes that had +notify.
This mixing of types is bad, so here it gets removed.
This can be improved once an IQ tracking API (#714) is added.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 23 Oct 2018 22:54:15 +0200 |
parent | 8620:84b73949fc30 |
child | 9656:3da6cc927ee6 |
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")); |
8620
84b73949fc30
util.format: Add test coverage for case of extra nil argument
Kim Alvefur <zash@zash.se>
parents:
8619
diff
changeset
|
8 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
|
9 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
|
10 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
|
11 assert.equal("% [true]", format("%%", true)); |
8383 | 12 end); |
13 end); | |
14 end); |