This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8438620
)
Data::Dumper/qr.t: Add test names and diagnostics
author
Father Chrysostomos
<sprout@cpan.org>
Sat, 4 Feb 2012 06:54:14 +0000
(22:54 -0800)
committer
Father Chrysostomos
<sprout@cpan.org>
Sat, 4 Feb 2012 07:11:07 +0000
(23:11 -0800)
dist/Data-Dumper/t/qr.t
patch
|
blob
|
blame
|
history
diff --git
a/dist/Data-Dumper/t/qr.t
b/dist/Data-Dumper/t/qr.t
index
b838a12
..
0c9fcf3
100644
(file)
--- a/
dist/Data-Dumper/t/qr.t
+++ b/
dist/Data-Dumper/t/qr.t
@@
-19,8
+19,8
@@
TODO: {
use Data::Dumper;
my $qr = qr{$q};
eval Dumper $qr;
- ok(!$@
)
;
+ ok(!$@
, "Dumping $qr with XS") or diag $@, Dumper $qr
;
local $Data::Dumper::Useperl = 1;
eval Dumper $qr;
- ok(!$@
)
;
+ ok(!$@
, "Dumping $qr with PP") or diag $@, Dumper $qr
;
}