Tests need to skip if there is no Encode configured.
Nicholas Clark [Tue, 5 Apr 2005 21:16:01 +0000 (21:16 +0000)]
p4raw-id: //depot/perl@24169

lib/encoding/warnings/t/1-warning.t
lib/encoding/warnings/t/2-fatal.t

index d2b4af9..c7525ae 100644 (file)
@@ -2,6 +2,13 @@
 # $File: /member/local/autrijus/encoding-warnings//t/1-warning.t $ $Author: autrijus $
 # $Revision: #5 $ $Change: 6145 $ $DateTime: 2004-07-16T03:49:06.717424Z $
 
+BEGIN {
+    unless (eval { require Encode } ) {
+       print "1..0 # Skip: no Encode\n";
+       exit 0;
+    }
+}
+
 use Test;
 BEGIN { plan tests => 2 }
 
index 1047169..4fc16a1 100644 (file)
@@ -2,6 +2,13 @@
 # $File: /member/local/autrijus/encoding-warnings/t/2-fatal.t $ $Author: autrijus $
 # $Revision: #4 $ $Change: 1626 $ $DateTime: 2004-03-14T16:53:19.351256Z $
 
+BEGIN {
+    unless (eval { require Encode } ) {
+       print "1..0 # Skip: no Encode\n";
+       exit 0;
+    }
+}
+
 use Test;
 BEGIN { plan tests => 2 }