The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl IETF-ACE.t'

use strict;
use diagnostics;

# change 'tests => 1' to 'tests => last_test_to_print';

use Test::More tests => 3;

BEGIN { use_ok('IETF::ACE', qw(UCS4toRACE), ) };
BEGIN { use_ok('Unicode::String', qw(utf8), ) };

   my $in = "ábcde"; # .com

   my $ucs4 = utf8($in)->ucs4;

   my $out = &UCS4toRACE($ucs4);

   ok($out eq 'bq--adqwey3emu', 'RACE output');