The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use lib 't';
require 'test-util.pl';
use Test::More 'no_plan';
use Encode;
use Encode::JP::Emoji;

my $encoding = 'x-utf8-e4u-mixed-pp';
my $list = google_list();

# plan tests => scalar @list;

foreach my $strS (@$list) {
    my $hex  = sprintf '%04X' => ord $strS;
    my $octA = encode($encoding, $strS) or next;
    my $strB = decode($encoding, $octA);
    is(shex($strB), shex($strS), "round-trip $hex");
}