diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-07-30 00:39:28 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-07-30 00:39:28 +0200 |
commit | e8d4fa8c1cacc4062a573c46ced2e7c1ee25212a (patch) | |
tree | b0fbde7c3b6fa09d6b750c662fea0ebbd7ab31df /t/50-icli.t | |
parent | e22b73286bbf862090785adf022093dab751f62d (diff) |
icli -lq: Support filtering output with -h/-g
Diffstat (limited to 't/50-icli.t')
-rw-r--r-- | t/50-icli.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/50-icli.t b/t/50-icli.t index d5a4b65..2ab76e4 100644 --- a/t/50-icli.t +++ b/t/50-icli.t @@ -3,7 +3,7 @@ use strict; use warnings; use 5.010; -use Test::Command tests => (21*3); +use Test::Command tests => (22*3); my $icli = 'bin/icli -f t/in/status.dat -c t/in/objects.cache'; @@ -80,6 +80,11 @@ $cmd->exit_is_num(0); $cmd->stdout_is_file('t/out/list_queue'); $cmd->stderr_is_eq($EMPTY); +$cmd = Test::Command->new(cmd => "$icli -lq -h aneurysm"); +$cmd->exit_is_num(0); +$cmd->stdout_is_file('t/out/list_queue_aneurysm'); +$cmd->stderr_is_eq($EMPTY); + $cmd = Test::Command->new(cmd => "$icli -g invalid"); $cmd->exit_isnt_num(0); |