This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
skip t/op/incfilter.t for "make clean;make miniperl;make minitest"
[perl5.git] / t / uni / lower.t
1 BEGIN {
2     chdir 't' if -d 't';
3     @INC = qw(../lib uni .);
4     require "case.pl";
5 }
6
7 casetest("Lower", \%utf8::ToSpecLower,
8          sub { lc $_[0] }, sub { my $a = ""; lc ($_[0] . $a) },
9          sub { lcfirst $_[0] }, sub { my $a = ""; lcfirst ($_[0] . $a) });