test.pl 235 B

12345678910111213141516171819
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More;
  5. my $rc = 0;
  6. plan tests => 3;
  7. $rc = ok(1, 'First test');
  8. diag("Returned: $rc");
  9. $rc = ok(1, '1');
  10. diag("Returned: $rc");
  11. $rc = ok(1, 'Third test');
  12. diag("Returned: $rc");