The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

BEGIN {
    unless ("A" eq pack('U', 0x41)) {
	print "1..0 # Unicode::Collate " .
	    "cannot stringify a Unicode code point\n";
	exit 0;
    }
    if ($ENV{PERL_CORE}) {
	chdir('t') if -d 't';
	@INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib);
    }
}

use Test;
BEGIN { plan tests => 8 };

use strict;
use warnings;
use Unicode::Collate::Locale;

ok(1);

#########################

my $objSi = Unicode::Collate::Locale->
    new(locale => 'SI', normalization => undef);

ok($objSi->getlocale, 'si');

$objSi->change(level => 1);

ok($objSi->lt("\x{D96}", "\x{D82}"));
ok($objSi->lt("\x{D82}", "\x{D83}"));
ok($objSi->lt("\x{D83}", "\x{D9A}"));

ok($objSi->lt("\x{DA3}", "\x{DA5}"));
ok($objSi->lt("\x{DA5}", "\x{DA4}"));
ok($objSi->lt("\x{DA4}", "\x{DA6}"));