diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-25 12:59:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-25 12:59:50 +0000 |
commit | e99a46cacbce2810e237ceb927078f57b92547ae (patch) | |
tree | 4a043affeb91c5b2bd527e04fd1831cfaab27677 /ext | |
parent | fc77390a2910c0173d3f72757ee737d33c408b77 (diff) | |
download | perl-e99a46cacbce2810e237ceb927078f57b92547ae.tar.gz |
Cleaner Encode tests under -Mutf8.
p4raw-id: //depot/perl@16152
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Encode/t/at-cn.t | 4 | ||||
-rw-r--r-- | ext/Encode/t/at-tw.t | 4 | ||||
-rw-r--r-- | ext/Encode/t/jperl.t | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ext/Encode/t/at-cn.t b/ext/Encode/t/at-cn.t index 893c29fa6d..6249feee38 100644 --- a/ext/Encode/t/at-cn.t +++ b/ext/Encode/t/at-cn.t @@ -19,9 +19,11 @@ use strict; use Test::More tests => 29; use Encode; +no utf8; # we have raw Chinese encodings here + use_ok('Encode::CN'); -# Since JP.t already test basic file IO, we will just focus on +# Since JP.t already tests basic file IO, we will just focus on # internal encode / decode test here. Unfortunately, to test # against all the UniHan characters will take a huge disk space, # not to mention the time it will take, and the fact that Perl diff --git a/ext/Encode/t/at-tw.t b/ext/Encode/t/at-tw.t index 830eb8686a..11abbf3807 100644 --- a/ext/Encode/t/at-tw.t +++ b/ext/Encode/t/at-tw.t @@ -21,9 +21,11 @@ use strict; use Test::More tests => 17; use Encode; +no utf8; # we have raw Chinese encodings here + use_ok('Encode::TW'); -# Since JP.t already test basic file IO, we will just focus on +# Since JP.t already tests basic file IO, we will just focus on # internal encode / decode test here. Unfortunately, to test # against all the UniHan characters will take a huge disk space, # not to mention the time it will take, and the fact that Perl diff --git a/ext/Encode/t/jperl.t b/ext/Encode/t/jperl.t index faaf743f89..4c2ef4d272 100644 --- a/ext/Encode/t/jperl.t +++ b/ext/Encode/t/jperl.t @@ -20,6 +20,8 @@ BEGIN { $| = 1; } +no utf8; # we have raw Japanese encodings here + use strict; use Test::More tests => 18; my $Debug = shift; |