also preserve warnings
[p5sagit/Eval-WithLexicals.git] / t / hints.t
index 62cecc8..6a07969 100644 (file)
--- a/t/hints.t
+++ b/t/hints.t
@@ -1,10 +1,24 @@
-use strictures 1;
-# Find the hint value that 'use strictures 1' sets on this perl.
-my $strictures_hints;
-BEGIN { $strictures_hints = $^H }
-
+use strictures ();
 use Test::More;
 use Eval::WithLexicals;
+use lib 't/lib';
+
+my $strictures_hints;
+my $strictures_warn;
+{
+  local $ENV{PERL_STRICTURES_EXTRA} = 0;
+  eval q{
+    use strictures 1;
+    BEGIN {
+      # Find the hint value that 'use strictures 1' sets on this perl.
+      $strictures_hints = $^H;
+      $strictures_warn = ${^WARNING_BITS};
+    };
+    1;
+  } or die $@;
+};
+
+use strictures 1;
 
 my $eval = Eval::WithLexicals->with_plugins("HintPersistence")->new(prelude => '');
 
@@ -28,24 +42,29 @@ $eval->eval('use strictures 1');
   like $@, qr/requires explicit package/, 'Correct message in $@';
 }
 
-is_deeply(
-  $eval->hints->{q{$^H}}, \$strictures_hints,
+is(
+  ${$eval->hints->{q{$^H}}}, $strictures_hints,
  'Hints are set per strictures'
 );
 
+is(
+  (unpack "H*", ${$eval->hints->{q{${^WARNING_BITS}}}}),
+  (unpack "H*", $strictures_warn),
+  'Warning bits are set per strictures'
+);
+
 is_deeply(
   $eval->lexicals, { },
   'Lexical not stored'
 );
 
 # Assumption about perl internals: sort pragma will set a key in %^H.
-
-$eval->eval(q{ { use sort 'stable' } }),
-ok !exists $eval->hints->{q{%^H}}->{sort},
+$eval->eval(q{ { use hint_hash_pragma 'param' } }),
+ok !exists $eval->hints->{q{%^H}}->{hint_hash_pragma},
   "Lexical pragma used below main scope not captured";
 
-$eval->eval(q{ use sort 'stable' }),
-ok exists $eval->hints->{q{%^H}}->{sort},
+$eval->eval(q{ use hint_hash_pragma 'param' }),
+is $eval->hints->{q{%^H}}->{hint_hash_pragma}, 'param',
   "Lexical pragma captured";
 
 done_testing;