X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Fnamespace-clean.git;a=blobdiff_plain;f=t%2F09-fiddle-hinthash.t;h=bf7b0753299b9abfc92d4b9218b57283f3353571;hp=adc19230da6d2a8bdd3fc5b04b3c0078e199f435;hb=b2e54862c91ba576736e1889a84733d11cb1b675;hpb=64c1bcfc58cdb48209b349fbdb9f3e10a9b99919 diff --git a/t/09-fiddle-hinthash.t b/t/09-fiddle-hinthash.t index adc1923..bf7b075 100644 --- a/t/09-fiddle-hinthash.t +++ b/t/09-fiddle-hinthash.t @@ -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; }