You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/perl -w
|
|
|
|
use Test::Command tests => 33;
|
|
|
|
for my $arg (qw(b B c C H i O p Q r t)) {
|
|
my $cmd = Test::Command->new(cmd => "fping -$arg xxx");
|
|
$cmd->exit_is_num(1);
|
|
$cmd->stdout_is_eq("");
|
|
$cmd->stderr_like(qr{Usage:});
|
|
}
|