7c637bbe9eb534728fa958e97995f131904bd9b0
[p5sagit/p5-mst-13.2.git] / ext / Win32CORE / t / win32core.t
1 #!perl
2
3 use Test::More;
4 BEGIN {
5     if ( $ENV{PERL_CORE} ) {
6     require Config;
7         if ( $Config::Config{extensions} !~ /(?<!\S)Win32CORE(?!\S)/ ) {
8             plan skip_all => "Win32CORE extension not built";
9             exit();
10         }
11     }
12
13     plan tests => 1;
14 };
15 use_ok( "Win32CORE" );