mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.human.io: Add brief test of table generation
This commit is contained in:
parent
c1033eae3e
commit
cebf5ee0e3
1 changed files with 29 additions and 0 deletions
29
spec/util_human_io_spec.lua
Normal file
29
spec/util_human_io_spec.lua
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
describe("util.human.io", function ()
|
||||||
|
local human_io
|
||||||
|
setup(function ()
|
||||||
|
human_io = require "util.human.io";
|
||||||
|
end);
|
||||||
|
describe("table", function ()
|
||||||
|
|
||||||
|
it("alignment works", function ()
|
||||||
|
local row = human_io.table({
|
||||||
|
{
|
||||||
|
width = 3,
|
||||||
|
align = "right"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
width = 3,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.equal(" 1 | . ", row({ 1, "." }));
|
||||||
|
assert.equal(" 10 | .. ", row({ 10, ".." }));
|
||||||
|
assert.equal("100 | ...", row({ 100, "..." }));
|
||||||
|
assert.equal("10… | ..…", row({ 1000, "...." }));
|
||||||
|
|
||||||
|
end);
|
||||||
|
end);
|
||||||
|
end);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue