diff options
Diffstat (limited to 'lib/Tie/Array/splice.t')
-rw-r--r-- | lib/Tie/Array/splice.t | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Tie/Array/splice.t b/lib/Tie/Array/splice.t new file mode 100644 index 0000000000..d7ea6cc1dc --- /dev/null +++ b/lib/Tie/Array/splice.t @@ -0,0 +1,17 @@ +#!./perl + +BEGIN { + chdir 't' if -d 't'; + @INC = '.'; + push @INC, '../lib'; +} + +# bug id 20001020.002 +# -dlc 20001021 + +use Tie::Array; +tie @a,Tie::StdArray; +undef *Tie::StdArray::SPLICE; +require "op/splice.t" + +# Pre-fix, this failed tests 6-9 |