summaryrefslogtreecommitdiffstats
path: root/t/03_timespec.t
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2018-08-19 14:48:47 +0200
committerFlorian Pritz <bluewind@xinu.at>2018-08-19 14:48:47 +0200
commit13f51c2044fb22f6b3cb8c674a23fe636f7fb33d (patch)
treedc7d9cc7aabff00fd59f1a255faf4c1ce581e65b /t/03_timespec.t
parentdcb88a73de56ed32368ebbf9b22053b2c1b1c89b (diff)
downloadApp-BorgRestore-13f51c2044fb22f6b3cb8c674a23fe636f7fb33d.tar.gz
App-BorgRestore-13f51c2044fb22f6b3cb8c674a23fe636f7fb33d.tar.xz
Reorganize tests
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 't/03_timespec.t')
-rw-r--r--t/03_timespec.t21
1 files changed, 0 insertions, 21 deletions
diff --git a/t/03_timespec.t b/t/03_timespec.t
deleted file mode 100644
index 0f367c9..0000000
--- a/t/03_timespec.t
+++ /dev/null
@@ -1,21 +0,0 @@
-use strict;
-use warnings;
-
-use Test::More;
-
-use App::BorgRestore;
-
-my $app = App::BorgRestore->new_no_defaults(undef);
-
-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;