File: syntax_errors.t

package info (click to toggle)
libfunction-parameters-perl 2.001005-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 944 kB
  • sloc: perl: 6,478; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 414 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!perl
use strict;
use warnings FATAL => 'all';

use Test::More;

use FindBin;
use lib "$FindBin::Bin/lib";

ok !eval { require Bad };
#TODO: {
#    local $TODO = "The user should see the actual syntax error";
    like $@, qr{^Global symbol "\$info" requires explicit package name}m;

#    like($@, qr{^PPI failed to find statement for '\$bar'}m,
#         'Bad syntax generates stack trace');
#}

done_testing();