diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-06-03 00:50:12 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-06-03 00:50:12 +0200 |
commit | d80513eead0c9e66a01b4776c96c437fcb6c7c8d (patch) | |
tree | e62acfc28cefbfba89f2817a47c8a3283b95bee0 | |
parent | fc7c2958669434c61465d8c92441de20f3d7ed75 (diff) | |
download | sbotools2-d80513eead0c9e66a01b4776c96c437fcb6c7c8d.tar.xz |
01-unit.t: rename sboclean tests
-rwxr-xr-x | t/01-unit.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/01-unit.t b/t/01-unit.t index 27932ee..da29e7c 100755 --- 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"); } |