Tiny SelfLoader patch for better warnings
[p5sagit/p5-mst-13.2.git] / lib / open.t
index 7c7e2df..4ce7371 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
        require Config; import Config;
 }
 
-use Test::More tests => 22;
+use Test::More tests => 23;
 
 # open::import expects 'open' as its first argument, but it clashes with open()
 sub import {
@@ -61,7 +61,7 @@ is( ${^OPEN}, ":raw :crlf\0:raw :crlf",
 is( $^H{'open_IO'}, 'crlf', 'should record last layer set in %^H' );
 
 SKIP: {
-    skip("no perlio, no :utf8", 4) unless (find PerlIO::Layer 'perlio');
+    skip("no perlio, no :utf8", 12) unless (find PerlIO::Layer 'perlio');
 
     eval <<EOE;
     use open ':utf8';
@@ -180,9 +180,12 @@ EOE
           "checking syswrite() output on :utf8 streams by reading it back in");
     }
 }
-
 SKIP: {
-    skip("no perlio", 1) unless (find PerlIO::Layer 'perlio');
+    skip("no perlio", 2) unless (find PerlIO::Layer 'perlio');
+
+    eval q[use Encode::Alias;use open ":std", ":locale"];
+    is($@, '', 'can use :std and :locale');
+
     use open IN => ':non-existent';
     eval {
        require Symbol; # Anything that exists but we havn't loaded