diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-07 20:34:55 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-07 20:34:55 +0000 |
commit | 86627c6ade976cfad1fef6fb4eed89254458e14e (patch) | |
tree | 355c8fc8567f47684536e6fd199f0ea56f3a29c7 /lib/Exporter.t | |
parent | 2770a1ce2934f4277de13f4f795ba41c86bf1646 (diff) | |
download | perl-86627c6ade976cfad1fef6fb4eed89254458e14e.tar.gz |
Fix Exporter test for 2770a1ce2934f4277de13f4f795ba41c86bf1646. Silly me.
Diffstat (limited to 'lib/Exporter.t')
-rw-r--r-- | lib/Exporter.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Exporter.t b/lib/Exporter.t index ce3711622e..20f6ad31f3 100644 --- a/lib/Exporter.t +++ b/lib/Exporter.t @@ -220,6 +220,7 @@ my $val = eval { wibble() }; # Check that Carp recognizes Exporter as internal to Perl require Carp; +eval { Carp::croak() }; ::ok($Carp::Internal{Exporter}, "Carp recognizes Exporter"); ::ok($Carp::Internal{'Exporter::Heavy'}, "Carp recognizes Exporter::Heavy"); |