testrail-runs.t 242 B

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