fix semibroken tests
[p5sagit/Function-Parameters.git] / t / eating_strict_error.t
1 #!perl
2
3 use Test::More tests => 4;
4
5 use warnings FATAL => 'all';
6 use strict;
7
8 use Dir::Self;
9
10 for my $thing (map [__DIR__ . "/eating_strict_error$_->[0].fail", @$_[1 .. $#$_]], ['', 6], ['_2', 9]) {
11         my ($file, $line) = @$thing;
12         $@ = undef;
13         my $done = do $file;
14         my $exc = $@;
15         my $err = $!;
16
17         is $done, undef, "faulty code doesn't load";
18         my $msg = qq{Global symbol "\$records" requires explicit package name at $file line $line.\n};
19         like $exc, qr{^\Q$msg};
20         $exc or die "$file: $err";
21 }