diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-02-25 11:30:22 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-02-25 11:30:22 +0000 |
commit | 50d2698546d7dba5ed48b29bf1c13887b041a4ba (patch) | |
tree | 04d357db5082a7935510aaddf48744a684d2b62f /t/lib/encode.t | |
parent | c745e42cb33cb9fcfc4d47fe732cfa4725aa5d07 (diff) | |
download | perl-50d2698546d7dba5ed48b29bf1c13887b041a4ba.tar.gz |
Change method names in Encode implementation classes to something
less confusing (preparing to "go public").
p4raw-id: //depot/perlio@8927
Diffstat (limited to 't/lib/encode.t')
-rw-r--r-- | t/lib/encode.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/lib/encode.t b/t/lib/encode.t index 5c911f0f3a..da4d1b851e 100644 --- a/t/lib/encode.t +++ b/t/lib/encode.t @@ -30,9 +30,9 @@ $cpy = $str; ok(length($str),from_to($cpy,'iso8859-1','Unicode'),"Length Wrong"); my $sym = Encode->getEncoding('symbol'); -my $uni = $sym->toUnicode('a'); +my $uni = $sym->decode('a'); ok("\N{alpha}",substr($uni,0,1),"alpha does not map to symbol 'a'"); -$str = $sym->fromUnicode("\N{Beta}"); +$str = $sym->encode("\N{Beta}"); ok("B",substr($str,0,1),"Symbol 'B' does not map to Beta"); foreach my $enc (qw(symbol dingbats ascii),@encodings) @@ -40,8 +40,8 @@ foreach my $enc (qw(symbol dingbats ascii),@encodings) my $tab = Encode->getEncoding($enc); ok(1,defined($tab),"Could not load $enc"); $str = join('',map(chr($_),0x20..0x7E)); - $uni = $tab->toUnicode($str); - $cpy = $tab->fromUnicode($uni); + $uni = $tab->decode($str); + $cpy = $tab->encode($uni); ok($cpy,$str,"$enc mangled translating to Unicode and back"); } |