This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
stop passing '.' in @INC to tests
[perl5.git] / t / uni / title.t
CommitLineData
e49298ea
JH
1BEGIN {
2 chdir 't' if -d 't';
94af2fed
JH
3 unless (defined &DynaLoader::boot_DynaLoader) {
4 print("1..0 # miniperl: no Unicode::Normalize");
5 exit(0);
6 }
a0338eda 7 require "uni/case.pl";
e49298ea
JH
8}
9
61900f46
KW
10use feature 'unicode_strings';
11
cc70200b 12casetest(0, # No extra tests run here,
227e818e
KW
13 "Titlecase_Mapping",
14 ucfirst => sub { ucfirst $_[0] },
15 ucfirst_with_appended_null_arg => sub { my $a = ""; ucfirst ($_[0] . $a) }
16 );