diff options
-rw-r--r-- | t/50-integration.t | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/t/50-integration.t b/t/50-integration.t deleted file mode 100644 index 7048b7e..0000000 --- a/t/50-integration.t +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; -use 5.010; - -use Cwd; -use Test::Command tests => 6; - -my $hashl = '../../bin/hashl'; - -my $EMPTY = q{}; -my $usage = <<'EOF'; -Usage: ../../bin/hashl [options] <update|list|info|...> [args] -See 'perldoc -F ../../bin/hashl' (or 'man hashl' if it is properly installed) -EOF - -chdir('t/in'); - -for my $cmd ("$hashl", "$hashl copy") { - my $tc = Test::Command->new(cmd => $cmd); - - $tc->exit_isnt_num(0); - $tc->stdout_is_eq($EMPTY); - $tc->stderr_is_eq($usage); -} |