Get tests running under -T (cosmetics only)
[p5sagit/namespace-clean.git] / t / 05-syntax-error.t
CommitLineData
c92da19f 1use warnings;
2use strict;
3
726710b6 4use lib 't/lib';
c92da19f 5use Test::More tests => 1;
6
7eval { require "SyntaxError.pm" };
8like( $@, qr/\Asyntax error at /, 'Syntax Error reported correctly' );