blob: 3d2eb3e25195f9491f2d0c3b5d6443d09508f045 (
plain)
1
2
3
4
5
6
7
8
9
|
BEGIN {
chdir 't' if -d 't';
@INC = qw(../lib uni .);
require "case.pl";
}
casetest(0, # No extra tests run here,
"Title", \%utf8::ToSpecTitle, sub { ucfirst $_[0] },
sub { my $a = ""; ucfirst ($_[0] . $a) });
|