mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
19 lines
562 B
Perl
19 lines
562 B
Perl
BEGIN {
|
|
chdir 't' if -d 't';
|
|
unless (defined &DynaLoader::boot_DynaLoader) {
|
|
print("1..0 # miniperl: no Unicode::Normalize");
|
|
exit(0);
|
|
}
|
|
require "./uni/case.pl";
|
|
}
|
|
|
|
use feature 'unicode_strings';
|
|
|
|
casetest(0, # No extra tests run here,
|
|
"Lowercase_Mapping",
|
|
lc => sub { lc $_[0] },
|
|
lc_with_appended_null_arg => sub { my $a = ""; lc ($_[0] . $a) },
|
|
lcfirst => sub { lcfirst $_[0] },
|
|
lcfirst_with_appended_null_arg => sub { my $a = ""; lcfirst ($_[0] . $a) }
|
|
);
|