The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use warnings;
use strict;
use utf8;
use FindBin '$Bin';
use Test::More;
my $builder = Test::More->builder;
binmode $builder->output,         ":utf8";
binmode $builder->failure_output, ":utf8";
binmode $builder->todo_output,    ":utf8";
binmode STDOUT, ":encoding(utf8)";
binmode STDERR, ":encoding(utf8)";
use Lingua::JA::Moji ':all';
my $input = '~abxyz!"#$ABXYZ';
my $wide = ascii2wide ($input);
like ($wide, qr/ABXYZ/, "got wide ascii out");
my $roundtrip = wide2ascii ($wide);
is ($input, $roundtrip, "Roundtrip OK");
done_testing ();