diff options
Diffstat (limited to 't')
-rw-r--r-- | t/03_timespec.t | 21 |
1 files changed, 21 insertions, 0 deletions
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; |