1BEGIN { 2 chdir 't' if -d 't'; 3 unless (defined &DynaLoader::boot_DynaLoader) { 4 print("1..0 # miniperl: no Unicode::Normalize"); 5 exit(0); 6 } 7 require "./uni/case.pl"; 8} 9 10use feature 'unicode_strings'; 11 12casetest(0, # No extra tests run here, 13 "Lowercase_Mapping", 14 lc => sub { lc $_[0] }, 15 lc_with_appended_null_arg => sub { my $a = ""; lc ($_[0] . $a) }, 16 lcfirst => sub { lcfirst $_[0] }, 17 lcfirst_with_appended_null_arg => sub { my $a = ""; lcfirst ($_[0] . $a) } 18 ); 19