blob: 76df6de09d009483a6e91182b861f4c47669b63d (
plain)
1
2
3
4
5
6
7
8
9
|
BEGIN {
chdir 't' if -d 't';
@INC = qw(../lib uni .);
require "case.pl";
}
casetest("Lower", \%utf8::ToSpecLower,
sub { lc $_[0] }, sub { my $a = ""; lc ($_[0] . $a) },
sub { lcfirst $_[0] }, sub { my $a = ""; lcfirst ($_[0] . $a) });
|