diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-06-30 20:30:14 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-06-30 20:31:36 +0100 |
commit | f507d6f025503d42282fe562873d505fd9969d0d (patch) | |
tree | 09a21e22766ec693c3c50ccf8be023635641cf27 /ext/PerlIO-encoding/t | |
parent | 849ddec1b3fbb2910a27e5e65275b3164d60285c (diff) | |
download | perl-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/t')
-rw-r--r-- | ext/PerlIO-encoding/t/fallback.t | 4 |
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); } |