diff options
author | Mark Murray <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
commit | cf90a21ebd2262e09730a5a55c5ccb62f1622fad (patch) | |
tree | 116739180f0198b4d3857979a8e84444c2fe0949 /contrib/perl5/t/lib/tie-splice.t | |
parent | fc75d0664419eb8c8f264d8f298df2cd155c8966 (diff) |
Notes
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 0000000000000..d7ea6cc1dcc6f --- /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 |