aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-11-10 05:46:39 +0100
committerKim Alvefur <zash@zash.se>2017-11-10 05:46:39 +0100
commit0c4ad0fdbccf8552e463aa51b24030c9f01bf365 (patch)
tree39901441d959c8344eb5ace3794fbacc15ea962a
parent1438a3884507b709cba08691d329b0cf137f4bd4 (diff)
downloadprosody-0c4ad0fdbccf8552e463aa51b24030c9f01bf365.tar.gz
prosody-0c4ad0fdbccf8552e463aa51b24030c9f01bf365.zip
util.format: Move tests to spec/
-rw-r--r--spec/util_format_spec.lua13
-rw-r--r--util/format.lua10
2 files changed, 13 insertions, 10 deletions
diff --git a/spec/util_format_spec.lua b/spec/util_format_spec.lua
new file mode 100644
index 00000000..19a8af99
--- /dev/null
+++ b/spec/util_format_spec.lua
@@ -0,0 +1,13 @@
+local format = require "util.format".format;
+
+describe("util.format", function()
+ describe("#format()", function()
+ it("should work", function()
+ assert.equal(format("%s", "hello"), "hello");
+ assert.equal(format("%s"), "<nil>");
+ assert.equal(format("%s", true), "true");
+ assert.equal(format("%d", true), "[true]");
+ assert.equal(format("%%", true), "% [true]");
+ end);
+ end);
+end);
diff --git a/util/format.lua b/util/format.lua
index b3296228..99705d03 100644
--- a/util/format.lua
+++ b/util/format.lua
@@ -4,7 +4,6 @@
local tostring = tostring;
local select = select;
-local assert = assert;
local unpack = unpack;
local type = type;
@@ -60,15 +59,6 @@ local function format(formatstring, ...)
return formatstring:format(unpack(args));
end
-local function test()
- assert(format("%s", "hello") == "hello");
- assert(format("%s") == "<nil>");
- assert(format("%s", true) == "true");
- assert(format("%d", true) == "[true]");
- assert(format("%%", true) == "% [true]");
-end
-
return {
format = format;
- test = test;
};