]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/blobdiff - t/02-wc2re.t
Major rewrite
[perl/modules/Regexp-Wildcards.git] / t / 02-wc2re.t
diff --git a/t/02-wc2re.t b/t/02-wc2re.t
deleted file mode 100644 (file)
index 0aa383b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!perl -T
-
-use strict;
-use warnings;
-
-use Test::More tests => 10;
-
-use Regexp::Wildcards qw/wc2re wc2re_win32/;
-
-for my $O (qw/win32 dos os2 cygwin/, 'MSWin32') {
- for ('a{b,c}*', 'a?{b\\{,\\}c}') {
-  ok(wc2re($_, $O) eq wc2re_win32($_), $_ . ' (' . $O . ')');
- }
-}