diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-04-07 14:14:53 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-04-07 14:14:53 +0100 |
commit | 7dc9f9ab2ad061b0b8be08e3a27cfe3056f1a76c (patch) | |
tree | dcd4943b166a7b8060b3bcefd483f26b0c3e09dc /spec | |
parent | 2fa6a010180e8879e1eaab6612d86ff74cbed182 (diff) | |
download | prosody-7dc9f9ab2ad061b0b8be08e3a27cfe3056f1a76c.tar.gz prosody-7dc9f9ab2ad061b0b8be08e3a27cfe3056f1a76c.zip |
util.human.io: Add parse_duration() method to parse a duration string
Similar logic occurs throughout various modules in the codebase. We might even
want a module:get_option_duration()??
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_human_io_spec.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/util_human_io_spec.lua b/spec/util_human_io_spec.lua index f1b28883..c143d028 100644 --- a/spec/util_human_io_spec.lua +++ b/spec/util_human_io_spec.lua @@ -42,6 +42,24 @@ describe("util.human.io", function () assert.equal("räksmörgås", human_io.ellipsis("räksmörgås", 10)); end); end); + + describe("parse_duration", function () + local function test(expected, duration) + assert.equal(expected, human_io.parse_duration(duration)); + end + it("works", function () + test(1, "1s"); + test(60, "1mi"); + test(60, "1min"); + test(60, "1 min"); + test(60, "1 minute"); + test(120, "2min"); + test(86400, "1d"); + test(2678400, "1m"); + test(2678400, "1month"); + test(2678400, "1 month"); + end); + end); end); |