Software /
code /
prosody
Comparison
spec/util_format_spec.lua @ 10034:4fca92d60040
util.format: Handle formats expecting an integer in Lua 5.3+ (fixes #1371)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 30 May 2019 13:41:05 +0200 |
parent | 9693:6ed0d6224d64 |
child | 10035:386f085820e6 |
comparison
equal
deleted
inserted
replaced
10033:ca8333d1a7fe | 10034:4fca92d60040 |
---|---|
10 assert.equal(" [<nil>]", format("", nil)); | 10 assert.equal(" [<nil>]", format("", nil)); |
11 assert.equal("true", format("%s", true)); | 11 assert.equal("true", format("%s", true)); |
12 assert.equal("[true]", format("%d", true)); | 12 assert.equal("[true]", format("%d", true)); |
13 assert.equal("% [true]", format("%%", true)); | 13 assert.equal("% [true]", format("%%", true)); |
14 assert.equal("{ }", format("%q", { })); | 14 assert.equal("{ }", format("%q", { })); |
15 assert.equal("[1.5]", format("%d", 1.5)); | |
15 end); | 16 end); |
16 end); | 17 end); |
17 end); | 18 end); |