diff options
Diffstat (limited to 'contrib/perl5/t/lib/tie-splice.t')
-rwxr-xr-x | contrib/perl5/t/lib/tie-splice.t | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/perl5/t/lib/tie-splice.t b/contrib/perl5/t/lib/tie-splice.t new file mode 100755 index 000000000000..d7ea6cc1dcc6 --- /dev/null +++ b/contrib/perl5/t/lib/tie-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 |