Move the test for require 5.11.0 not loading strictures to require.t from use.t
[p5sagit/p5-mst-13.2.git] / t / comp / use.t
index ba7d587..fade9fe 100755 (executable)
@@ -6,7 +6,7 @@ BEGIN {
     $INC{"feature.pm"} = 1; # so we don't attempt to load feature.pm
 }
 
-print "1..70\n";
+print "1..69\n";
 
 # Can't require test.pl, as we're testing the use/require mechanism here.
 
@@ -122,9 +122,6 @@ is ($@, "");
 # and they are properly scoped
 eval '{use 5.11.0;} ${"foo"} = "bar";';
 is ($@, "");
-# and this doesn't happen with require
-eval 'require 5.11.0; ${"foo"} = "bar";';
-is ($@, "");
 
 { use test_use }       # check that subparse saves pending tokens