This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make the test more portable.
[perl5.git] / t / lib / tie-stdarray.t
CommitLineData
a60c0954
NIS
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
93430cb4 5 unshift @INC, '../lib';
a60c0954
NIS
6}
7
8use Tie::Array;
9tie @foo,Tie::StdArray;
10tie @ary,Tie::StdArray;
11tie @bar,Tie::StdArray;
93430cb4 12require "op/array.t"