On Tue, Sep 30, 2003 at 04:56:30PM -0500, Eric Lease Morgan wrote:
>   is(ref($librarian->term_ids), 'ARRAY', 'set term_ids()');

Try Test::More's isa_ok(). It works on objects *and* references.

    isa_ok( $librarian->term_ids, 'ARRAY', 'set term_ids()' );

Eric++ for taking the time to do tests! 

//Ed



Reply via email to