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