summaryrefslogtreecommitdiff
path: root/lib/Test/t/qr.t
blob: ea40f8730835c7ad7f57f05e0cd75a871c298fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!./perl -w

use strict;
BEGIN {
    if ($] < 5.005) {
	print "1..0\n";
	print "ok 1 # skipped; this test requires at least perl 5.005\n";
	exit;
    }
}
use Test; plan tests => 1;

ok 'abc', qr/b/;