blob: a04352991704eb0f955e90f49d6a95f360683eb3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
BEGIN {
chdir 't' if -d 't';
require "uni/case.pl";
}
casetest(0, # No extra tests run here,
"Titlecase_Mapping",
ucfirst => sub { ucfirst $_[0] },
ucfirst_with_appended_null_arg => sub { my $a = ""; ucfirst ($_[0] . $a) }
);
|