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