diff options
Diffstat (limited to 't')
-rw-r--r-- | t/02_parsing.t | 2 | ||||
-rw-r--r-- | t/03_timespec.t | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/t/02_parsing.t b/t/02_parsing.t index 8f3bcfb..b8e2d64 100644 --- a/t/02_parsing.t +++ b/t/02_parsing.t @@ -28,7 +28,7 @@ $borg->mock('list_archive', sub { # Call the actual function we want to test my $app = App::BorgRestore->new({borg => $borg, db => $db}); -$app->handle_added_archives(['archive-1'], $db); +$app->_handle_added_archives(['archive-1'], $db); # Check if $db->add_path has been called properly my (@calls, @a); diff --git a/t/03_timespec.t b/t/03_timespec.t index ae1b1e5..0f367c9 100644 --- a/t/03_timespec.t +++ b/t/03_timespec.t @@ -7,15 +7,15 @@ 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('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'); +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; |