RE: [20000223.001] no test cases for splice(@array)
Richard Soderberg [Mon, 28 May 2001 12:31:23 +0000 (05:31 -0700)]
Message-ID: <NAEKLNAAHLMBPMPNBMLEOEFLDFAA.rs@crystalflame.net>

p4raw-id: //depot/perl@10265

t/op/splice.t

index 06e3509..3b4229a 100755 (executable)
@@ -1,6 +1,6 @@
 #!./perl
 
-print "1..9\n";
+print "1..10\n";
 
 @a = (1..10);
 
@@ -32,3 +32,9 @@ print "ok 8\n";
 
 print "not " unless j(splice(@a,-3,-2,2)) eq j(7) && j(@a) eq j(1,2,7,3);
 print "ok 9\n";
+
+# Bug 20000223.001 - no test for splice(@array).  Destructive test!
+print "not " unless j(splice(@a)) eq j(1,2,7,3) && j(@a) eq '';
+print "ok 10\n";
+
+