X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F01-import.t;h=c2d234e9ab7415916bba3228c0326380005b418f;hb=caa5f3c462570ffc1eb2c4222266978d1c925c3b;hp=a5f8ba1cd6f31796560fcfa9bfc2291a16013636;hpb=d3841a7816c3e170f292ced4a5818ab252574300;p=perl%2Fmodules%2FRegexp-Wildcards.git diff --git a/t/01-import.t b/t/01-import.t index a5f8ba1..c2d234e 100644 --- a/t/01-import.t +++ b/t/01-import.t @@ -1,10 +1,13 @@ #!perl -T -use Test::More tests => 4; +use strict; +use warnings; + +use Test::More tests => 5; require Regexp::Wildcards; -for (qw/wc2re_jokers wc2re_unix wc2re_win32 wc2re/) { +for (qw/wc2re_jokers wc2re_sql wc2re_unix wc2re_win32 wc2re/) { eval { Regexp::Wildcards->import($_) }; ok(!$@, 'import ' . $_); }