From d19c50977b10e379418e879acb7b6b5463081729 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 4 Mar 2017 10:53:36 +0100 Subject: Test timespec_to_seconds Signed-off-by: Florian Pritz --- t/03_timespec.t | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 t/03_timespec.t (limited to 't') diff --git a/t/03_timespec.t b/t/03_timespec.t new file mode 100644 index 0000000..a131512 --- /dev/null +++ b/t/03_timespec.t @@ -0,0 +1,21 @@ +use strict; +use warnings; + +use Test::More; + +use App::BorgRestore; + +my $app = App::BorgRestore->new({}, {borg => 0, db => 0}); + +is($app->timespec_to_seconds('5s'), 5, '5 seconds'); +is($app->timespec_to_seconds('5minutes'), 5*60, '5 minutes'); +is($app->timespec_to_seconds('6d'), 6*60*60*24, '6 days'); +is($app->timespec_to_seconds('8m'), 8*60*60*24*31, '8 months'); +is($app->timespec_to_seconds('2y'), 2*60*60*24*365, '2 years'); + +is($app->timespec_to_seconds('5sec'), undef, 'invalid unit returns undef'); +is($app->timespec_to_seconds('5'), undef, 'missing unit returns undef'); +is($app->timespec_to_seconds('blub'), undef, 'string returns undef'); +is($app->timespec_to_seconds(''), undef, 'empty string returns undef'); + +done_testing; -- cgit v1.2.3-24-g4f1b