]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/blob - t/02-can.t
Switch to qw<>
[perl/modules/Regexp-Wildcards.git] / t / 02-can.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 5;
7
8 require Regexp::Wildcards;
9
10 for (qw<new do capture type convert>) {
11  ok(Regexp::Wildcards->can($_), 'RW can ' . $_);
12 }
13