ee7178bb122d9d28b1cd05ca8adb4b315d95be4d
[p5sagit/namespace-clean.git] / t / 05-syntax-error.t
1 #!/usr/bin/env perl
2 use warnings;
3 use strict;
4
5 use FindBin;
6 use lib "$FindBin::Bin/lib";
7 use Test::More tests => 1;
8
9 eval { require "SyntaxError.pm" };
10 like( $@, qr/\Asyntax error at /, 'Syntax Error reported correctly' );