diff options
author | Slack Coder <slackcoder@server.ky> | 2024-11-28 09:59:36 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2025-02-19 09:55:01 -0500 |
commit | 24493e32d8548110c514db9bc09efb5aba276ca5 (patch) | |
tree | 80319bacf6eb845741beb8d331969884495d6f4c /t/10-version.t | |
parent | 82a520dcb6f6cfe538c68fd04a8a7b94f3b177c2 (diff) | |
download | sbotools2-24493e32d8548110c514db9bc09efb5aba276ca5.tar.xz |
Set To Do branch
Diffstat (limited to 't/10-version.t')
-rwxr-xr-x | t/10-version.t | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/t/10-version.t b/t/10-version.t deleted file mode 100755 index 5a21ef1..0000000 --- a/t/10-version.t +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env perl - -use 5.16.0; -use strict; -use warnings FATAL => 'all'; -use Test::More; -use Capture::Tiny qw/ capture_merged /; -use FindBin '$RealBin'; -use lib $RealBin; -use lib "$RealBin/../SBO-Lib/lib"; -use Test::Sbotools qw/ make_slackbuilds_txt sbocheck sboclean sboconfig sbofind sboinstall sboremove sbosnap sboupgrade /; -use SBO::Lib; - -plan tests => 8; - -make_slackbuilds_txt(); - -my $version = $SBO::Lib::VERSION; -my $ver_text = <<"VERSION"; -sbotools version $version -VERSION - -# 1-8: test -v output of sbo* scripts -sbocheck '-v', { expected => $ver_text }; -sboclean '-v', { expected => $ver_text }; -sboconfig '-v', { expected => $ver_text }; -sbofind '-v', { expected => $ver_text }; -sboinstall '-v', { expected => $ver_text }; -sboremove '-v', { expected => $ver_text }; -sbosnap '-v', { expected => $ver_text }; -sboupgrade '-v', { expected => $ver_text }; - |