Assimilate Test-Simple 0.50
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / eq_set.t
1 #!perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = ('../lib', 'lib');
7     }
8     else {
9         unshift @INC, 't/lib';
10     }
11 }
12 chdir 't';
13
14 use strict;
15 use Test::More;
16
17 plan tests => 2;
18
19 # RT 3747
20 ok( eq_set([1, 2, [3]], [[3], 1, 2]) );
21 ok( eq_set([1,2,[3]], [1,[3],2]) );