test.pl 175 B

1234567891011121314
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More;
  5. my $rc = 0;
  6. $rc = plan tests => 0;
  7. diag("Returned: " . sprintf("%d", $rc));
  8. $rc = ok(1);
  9. diag("Returned: $rc");