02-can.t 186 B

12345678910111213
  1. #!perl -T
  2. use strict;
  3. use warnings;
  4. use Test::More tests => 5;
  5. require Regexp::Wildcards;
  6. for (qw<new do capture type convert>) {
  7. ok(Regexp::Wildcards->can($_), 'RW can ' . $_);
  8. }