aboutsummaryrefslogtreecommitdiff
path: root/t/25-unit-sbofind.t
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2024-11-28 09:59:36 -0500
committerSlack Coder <slackcoder@server.ky>2025-02-19 09:55:01 -0500
commit24493e32d8548110c514db9bc09efb5aba276ca5 (patch)
tree80319bacf6eb845741beb8d331969884495d6f4c /t/25-unit-sbofind.t
parent82a520dcb6f6cfe538c68fd04a8a7b94f3b177c2 (diff)
downloadsbotools2-24493e32d8548110c514db9bc09efb5aba276ca5.tar.xz
Set To Do branch
Diffstat (limited to 't/25-unit-sbofind.t')
-rwxr-xr-xt/25-unit-sbofind.t37
1 files changed, 0 insertions, 37 deletions
diff --git a/t/25-unit-sbofind.t b/t/25-unit-sbofind.t
deleted file mode 100755
index c636e1b..0000000
--- a/t/25-unit-sbofind.t
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-use Test::More;
-use Test::Exit;
-use FindBin '$RealBin';
-use lib $RealBin;
-use Test::Sbotools qw/ load /;
-use Capture::Tiny qw/ capture_merged /;
-use File::Temp 'tempdir';
-use Cwd;
-
-plan tests => 6;
-
-# 1-6: sbofind unit tests...
-{
- load('sbofind');
-
- my $exit;
- my $out = capture_merged { $exit = exit_code { main::perform_search(); }; };
-
- is ($out, "A fatal script error has occurred:\nperform_search requires an argument.\nExiting.\n", "sbofind's perform_search() gave correct output");
- is ($exit, 2, "sbofind's perform_search() gave correct exit status");
-
- undef $exit;
- $out = capture_merged { $exit = exit_code { main::get_file_contents(); }; };
-
- is ($out, "A fatal script error has occurred:\nget_file_contents requires an argument.\nExiting.\n", "sbofind's get_file_contents() gave correct output");
- is ($exit, 2, "sbofind's get_file_contents() gave correct exit status");
-
- undef $exit;
- $out = capture_merged { $exit = exit_code { main::show_build_queue(); }; };
-
- is ($out, "A fatal script error has occurred:\nshow_build_queue requires an argument.\nExiting.\n", "sbofind's show_build_queue() gave correct output");
- is ($exit, 2, "sbofind's show_build_queue() gave correct exit status");
-}