summaryrefslogtreecommitdiff
path: root/t/uni/lower.t
blob: 5ab4cdd74e1e3dd6c0493c930c750b4facac8009 (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
    chdir 't' if -d 't';
    @INC = qw(../lib uni .);
    require "case.pl";
}

casetest(0, # No extra tests run here,
	"Lower", \%utf8::ToSpecLower,
	 sub { lc $_[0] }, sub { my $a = ""; lc ($_[0] . $a) },
	 sub { lcfirst $_[0] }, sub { my $a = ""; lcfirst ($_[0] . $a) });