summaryrefslogtreecommitdiffstats
path: root/tap/tests/pass/test.pl
blob: 8abc92e7c7dc68a0c9d3f25fb8442061442b0d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use warnings;
use strict;

use Test::More;

my $rc = 0;

$rc = plan tests => 2;
diag("Returned: " . sprintf('%d', $rc));

$rc = pass('test to pass');
diag("Returned: $rc");

$rc = pass('test to pass with extra string');
diag("Returned: $rc");