summaryrefslogtreecommitdiff
path: root/ext/PerlIO-encoding
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-06-30 20:30:14 +0100
committerNicholas Clark <nick@ccl4.org>2010-06-30 20:31:36 +0100
commitf507d6f025503d42282fe562873d505fd9969d0d (patch)
tree09a21e22766ec693c3c50ccf8be023635641cf27 /ext/PerlIO-encoding
parent849ddec1b3fbb2910a27e5e65275b3164d60285c (diff)
downloadperl-f507d6f025503d42282fe562873d505fd9969d0d.tar.gz
Convert Fcntl and PerlIO::encoding's tests to Test::More.
Remove one vestigial mention of MacOS.
Diffstat (limited to 'ext/PerlIO-encoding')
-rw-r--r--ext/PerlIO-encoding/t/fallback.t4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/PerlIO-encoding/t/fallback.t b/ext/PerlIO-encoding/t/fallback.t
index 17ac8b1347..3944f7dff0 100644
--- a/ext/PerlIO-encoding/t/fallback.t
+++ b/ext/PerlIO-encoding/t/fallback.t
@@ -1,8 +1,6 @@
#!./perl
BEGIN {
- push @INC, "::lib:$MacPerl::Architecture:" if $^O eq 'MacOS';
- require "../../t/test.pl";
skip_all("No perlio") unless (find PerlIO::Layer 'perlio');
if (ord("A") == 193) {
print "1..0 # Skip: EBCDIC\n";
@@ -12,7 +10,7 @@ BEGIN {
print "1..0 # Skip: No Encode\n";
exit 0;
}
- plan (9);
+ use Test::More tests => 9;
import Encode qw(:fallback_all);
}