Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!/usr/bin/perl -w
BEGIN {
unshift @INC, 't/lib';
}
use strict;
use Test::More tests => 1;
eval q{
os_unsupported();
};
like( $@, qr/^OS unsupported$/, 'OS Unsupported' );