projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
6944c18
)
Refactor t/op/cond.t to use test.pl instead of making TAP by hand
author
Colin Kuskie (via RT) <perlbug-followup@perl.org>
Sat, 8 Sep 2012 22:31:53 +0000 (15:31 -0700)
committer
Steffen Mueller <smueller@cpan.org>
Mon, 10 Sep 2012 06:14:28 +0000 (08:14 +0200)
t/op/cond.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/cond.t
b/t/op/cond.t
index
0a0d1e1
..
acf0704
100644
(file)
--- a/
t/op/cond.t
+++ b/
t/op/cond.t
@@
-1,10
+1,16
@@
#!./perl
-print "1..4\n";
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+ require './test.pl';
+}
-print 1 ? "ok 1\n" : "not ok 1\n"; # compile time
-print 0 ? "not ok 2\n" : "ok 2\n";
+is( 1 ? 1 : 0, 1, 'compile time, true' );
+is( 0 ? 0 : 1, 1, 'compile time, false' );
$x = 1;
-print $x ? "ok 3\n" : "not ok 3\n"; # run time
-print !$x ? "not ok 4\n" : "ok 4\n";
+is( $x ? 1 : 0, 1, 'run time, true');
+is( !$x ? 0 : 1, 1, 'run time, false');
+
+done_testing();