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