-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from miyagawa/decode-utf8
Unit test for decoding behavior change in #11
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
use strict; | ||
use Encode qw(decode_utf8 FB_CROAK); | ||
use Test::More tests => 3; | ||
|
||
sub croak_ok(&) { | ||
my $code = shift; | ||
eval { $code->() }; | ||
like $@, qr/does not map/; | ||
} | ||
|
||
my $bytes = "L\x{e9}on"; | ||
my $pad = "\x{30C9}"; | ||
|
||
my $orig = $bytes; | ||
croak_ok { Encode::decode_utf8($orig, FB_CROAK) }; | ||
|
||
my $orig2 = $bytes; | ||
croak_ok { Encode::decode('utf-8', $orig2, FB_CROAK) }; | ||
|
||
chop(my $new = $bytes . $pad); | ||
croak_ok { Encode::decode_utf8($new, FB_CROAK) }; | ||
|