in reply to Re^2: Test::More and is_array
in thread Test::More and is_array

As stvn already pointed out, eq_array is not a test like ok, but a convenience function to use in such a test, e.g.

ok( eq_array( $list, $expected ), 'some test' );

the lowliest monk

Replies are listed 'Best First'.
Re^4: Test::More and is_array
by geektron (Curate) on Jun 09, 2005 at 20:45 UTC
    i just updated with what i wanted, after getting the mistake about is_array cleared up.