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