diff options
Diffstat (limited to 't/02create_pkgs.t')
-rw-r--r-- | t/02create_pkgs.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/02create_pkgs.t b/t/02create_pkgs.t index 4913e61a..63a8fc0f 100644 --- a/t/02create_pkgs.t +++ b/t/02create_pkgs.t @@ -25,6 +25,10 @@ mkdir($dir); my $out = `genhdlist2 $dir 2>&1`; chomp($out); is($out, "no *.rpm found in $dir (use --allow-empty-media?)", "genhdlist2 works"); +$out = `genhdlist2 --help 2>&1`; +chomp($out); +my ($first) = split(/\n/, $out); +is($first, "Usage:", "genhdlist2 --help works"); # locally build test rpms |