mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.human.io: Add tests for parse_duration() (some failing)
This commit is contained in:
parent
9f96301ce8
commit
3ab3f3e1e7
1 changed files with 9 additions and 0 deletions
|
@ -54,10 +54,19 @@ describe("util.human.io", function ()
|
|||
test(60, "1 min");
|
||||
test(60, "1 minute");
|
||||
test(120, "2min");
|
||||
test(7200, "2h");
|
||||
test(7200, "2 hours");
|
||||
test(86400, "1d");
|
||||
test(604800, "1w");
|
||||
test(604800, "1week");
|
||||
test(1814400, "3 weeks");
|
||||
test(2678400, "1m");
|
||||
test(2678400, "1mo");
|
||||
test(2678400, "1month");
|
||||
test(2678400, "1 month");
|
||||
test(31536000, "365 days");
|
||||
test(31556952, "1 year");
|
||||
return assert.is_nil(human_io.parse_duration("two weeks"), "\"2 weeks\" -> nil");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue