X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F02-can.t;fp=t%2F02-can.t;h=35879cba5f7e57aba17b9239370a8da6a6797a3b;hb=fbd767d1d92b735a6509e57ccfbd73b45845081e;hp=0000000000000000000000000000000000000000;hpb=5468cc9fedae639e785117ab38807d857c84bdec;p=perl%2Fmodules%2FRegexp-Wildcards.git diff --git a/t/02-can.t b/t/02-can.t new file mode 100644 index 0000000..35879cb --- /dev/null +++ b/t/02-can.t @@ -0,0 +1,13 @@ +#!perl -T + +use strict; +use warnings; + +use Test::More tests => 5; + +require Regexp::Wildcards; + +for (qw/new do capture type convert/) { + ok(Regexp::Wildcards->can($_), 'RW can ' . $_); +} +