summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-18 18:57:44 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-18 18:57:44 +0200
commit119e9660f5312cb83cf4a391417476966f5a1fe6 (patch)
tree9ff05e0b915c4d284eefed7f9494ad7099fdaad6
parent18819b75b20c3a8b3bf7a0b6120c6805c265fd60 (diff)
Remove integration test for now (was a stub, anyways)
-rw-r--r--t/50-integration.t25
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);
-}