The real fix for RT#73402 (abaondon tie %^H entirely), FC++
[p5sagit/namespace-clean.git] / t / 09-fiddle-hinthash.t
index adc1923..bf7b075 100644 (file)
@@ -24,10 +24,15 @@ use Test::More 0.88;
   use namespace::clean;
 
   BEGIN {
-    Test::More::is( $^H{'foo'}, 'bar', 'hinthash intact' );
+    Test::More::is( $^H{'foo'}, 'bar', 'compiletime hinthash intact after n::c' );
   }
 
   {
+    BEGIN {
+      Test::More::is(
+        $^H{'foo'}, 'bar', 'compile-time hinthash intact in inner scope'
+      );
+    }
     1;
   }