Upgrade to Attribute::Handlers 0.87 (which is just a core sync) -- for real
[p5sagit/p5-mst-13.2.git] / ext / re / t / qr.t
CommitLineData
192b9cd1 1#!./perl
2
3BEGIN {
192b9cd1 4 require Config;
5 if (($Config::Config{'extensions'} !~ /\bre\b/) ){
6 print "1..0 # Skip -- Perl configured without re module\n";
7 exit 0;
8 }
9}
10
11use Test::More tests => 1;
12use re 'Debug';
13isa_ok( qr//, "Regexp" );