my ($tests, $reports);
BEGIN {
- $tests = 84;
- $reports = 96;
+ $tests = 88;
+ $reports = 100;
}
use Test::More tests => 3 * (4 * $tests + $reports) + 4;
new __PACKAGE___;
----
[ 'new', '__PACKAGE___' ]
+####
+package Hurp;
+new { __PACKAGE__ }; # Hurp
+----
+[ 'new', '{' ]
+####
+package __PACKAGE_;
+new { __PACKAGE__ };
+----
+[ 'new', '{' ]
+####
+package __PACKAGE__;
+new { __PACKAGE__ };
+----
+[ 'new', '{' ]
+####
+package __PACKAGE___;
+new { __PACKAGE__ };
+----
+[ 'new', '{' ]