summaryrefslogtreecommitdiff
path: root/t/50-icli.t
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-07-29 23:41:47 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-07-29 23:41:47 +0200
commite22b73286bbf862090785adf022093dab751f62d (patch)
tree3cef67a9a7c4a824a6f29c2d09aef07ddff319cc /t/50-icli.t
parent39a23d0ef9bea418d7e3b9be625d593b75628fce (diff)
Add icli -lq to list the scheduling queue
Diffstat (limited to 't/50-icli.t')
-rw-r--r--t/50-icli.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/50-icli.t b/t/50-icli.t
index 53fe15a..d5a4b65 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 => (20*3);
+use Test::Command tests => (21*3);
my $icli = 'bin/icli -f t/in/status.dat -c t/in/objects.cache';
@@ -75,6 +75,11 @@ $cmd->exit_is_num(0);
$cmd->stdout_is_file('t/out/list_services_single');
$cmd->stderr_is_eq($EMPTY);
+$cmd = Test::Command->new(cmd => "$icli -lq");
+$cmd->exit_is_num(0);
+$cmd->stdout_is_file('t/out/list_queue');
+$cmd->stderr_is_eq($EMPTY);
+
$cmd = Test::Command->new(cmd => "$icli -g invalid");
$cmd->exit_isnt_num(0);