lemonldap-ng/lemonldap-ng-portal/t/lib/Lemonldap/NG/Portal/Custom.pm
Xavier Guimard 4459a47f76 Tidy
2020-02-20 23:37:05 +01:00

16 lines
125 B
Perl

package Custom;
sub empty {
return '';
}
sub undefined {
return undef;
}
sub test_uc {
return uc $_[0];
}
1;