| 123456789101112131415161718192021 |
- #!/usr/bin/perl
- use warnings;
- use strict;
- use Test::More;
- my $rc = 0;
- $rc = plan tests => 3;
- diag("Returned: " . sprintf("%d", $rc));
- $rc = ok(1, 'First test');
- diag("Returned: $rc");
- $rc = ok(1, '1');
- diag("Returned: $rc");
- $rc = ok(1, 'Third test');
- diag("Returned: $rc");
|