blob: 42396c0547ecb539b51fe364327976349ae1c8f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/perl -w
BEGIN {
unshift @INC, 't/lib';
}
use strict;
use Test::More tests => 1;
use ExtUtils::MakeMaker;
eval q{
os_unsupported();
};
like( $@, qr/^OS unsupported$/, 'OS Unsupported' );
|