The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use utf8;
use Acme::SuddenlyDeath;
use Encode;
use Test::More;

my $got;
my $expect;

subtest "suddenly_death_single" => sub {
    $got = Encode::decode_utf8(suddenly_death_single("突然の死"));
    $expect = '_人人人人人_> 突然の死 < ̄^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'JP');

    $got = Encode::decode_utf8(suddenly_death_single("suddenly death"));
    $expect = '_人人人人人人人人_> suddenly death < ̄^Y^Y^Y^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'EN');

    $got = Encode::decode_utf8(suddenly_death_single("突然の death"));
    $expect = '_人人人人人人人_> 突然の death < ̄^Y^Y^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'JP/EN');

    $got = Encode::decode_utf8(suddenly_death_single("突然の\ndeath"));
    $expect = "_人人人人_> 突然の <>  death < ̄^Y^Y^Y^ ̄";
    is($got, $expect, 'JP/EN + BR');

    done_testing;
};


subtest "sudden_death_single" => sub {
    $got = sudden_death_single("突然の死");
    $expect = '_人人人人人_> 突然の死 < ̄^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'JP');

    $got = sudden_death_single("suddenly death");
    $expect = '_人人人人人人人人_> suddenly death < ̄^Y^Y^Y^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'EN');

    $got = sudden_death_single("突然の death");
    $expect = '_人人人人人人人_> 突然の death < ̄^Y^Y^Y^Y^Y^Y^ ̄';
    is($got, $expect, 'JP/EN');

    $got = sudden_death_single("突然の\ndeath");
    $expect = "_人人人人_> 突然の <>  death < ̄^Y^Y^Y^ ̄";
    is($got, $expect, 'JP/EN + BR');

    done_testing;
};

done_testing;