This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update MANIFEST with dist/Data-Dumper/t/qr.t
[perl5.git] / dist / Data-Dumper / t / qr.t
CommitLineData
628491b6
AC
1#!perl -X
2
3BEGIN {
4 require Config; import Config;
5 no warnings 'once';
6 if ($Config{'extensions'} !~ /\bData\/Dumper\b/) {
7 print "1..0 # Skip: Data::Dumper was not built\n";
8 exit 0;
9 }
10}
11
12use strict;
13use Test::More tests => 1;
14use Data::Dumper;
15
16TODO: {
17 local $TODO = "RT#58608: Data::Dumper and slashes within qr";
18 my $q = q| \/ |;
19 use Data::Dumper;
20 my $qr = qr{$q};
21 eval Dumper $qr;
22 ok(!$@);
23}