Test that lc, uc, etc on undef return ""
Rafael Garcia-Suarez [Mon, 28 Jan 2008 10:46:43 +0000 (10:46 +0000)]
p4raw-id: //depot/perl@33087

t/op/lc.t

index 1cef380..4bfefb7 100644 (file)
--- a/t/op/lc.t
+++ b/t/op/lc.t
@@ -6,7 +6,12 @@ BEGIN {
     require './test.pl';
 }
 
-plan tests => 88;
+plan tests => 92;
+
+is(lc(undef),     "", "lc(undef) is ''");
+is(lcfirst(undef), "", "lcfirst(undef) is ''");
+is(uc(undef),     "", "uc(undef) is ''");
+is(ucfirst(undef), "", "ucfirst(undef) is ''");
 
 $a = "HELLO.* world";
 $b = "hello.* WORLD";