commit d80513eead0c9e66a01b4776c96c437fcb6c7c8d
parent fc7c2958669434c61465d8c92441de20f3d7ed75
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Fri, 3 Jun 2016 00:50:12 +0200
01-unit.t: rename sboclean tests
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/t/01-unit.t b/t/01-unit.t
@@ -312,13 +312,13 @@ SKIP: {
my $exit;
my $out = capture_merged { $exit = exit_code { main::rm_full(); }; };
- is ($out, "A fatal script error has occurred:\nrm_full requires an argument.\nExiting.\n", 'rm_full() gave correct output');
- is ($exit, 2, 'rm_full() gave correct exit status');
+ is ($out, "A fatal script error has occurred:\nrm_full requires an argument.\nExiting.\n", "sboclean's rm_full() gave correct output");
+ is ($exit, 2, "sboclean's rm_full() gave correct exit status");
undef $exit;
undef $out;
$out = capture_merged { $exit = exit_code { main::remove_stuff(); }; };
- is ($out, "A fatal script error has occurred:\nremove_stuff requires an argument.\nExiting.\n", 'remove_stuff() gave correct output');
- is ($exit, 2, 'remove_stuff() gave correct exit status');
+ is ($out, "A fatal script error has occurred:\nremove_stuff requires an argument.\nExiting.\n", "sboclean's remove_stuff() gave correct output");
+ is ($exit, 2, "sboclean's remove_stuff() gave correct exit status");
}