testrail-bulk-mark-results.t 240 B

123456789
  1. use strict;
  2. use warnings;
  3. use Test::More "tests" => 2;
  4. my @args = ($^X,qw{bin/testrail-bulk-mark-results --help});
  5. my $out = `@args`;
  6. is($? >> 8, 0, "Exit code OK asking for help");
  7. like($out,qr/encoding of arguments/i,"Help output OK");