On Fri, 2005-09-30 at 14:40 -0700, chromatic wrote:
> Does doing it in two steps work? Instead of:
>
> > is_deeply ($obj->get ('some_flags'), ['value-one', 'value-two']);
>
> perhaps:
>
> my @flags = @{ $obj->get( 'some_flags' ) };
> is_deeply( [EMAIL PROTECTED], [ 'value-one', 'value-two' ] );Yep, that works. As Schwern said, this is probably the only workable solution. Looks like I'll have to change quite a few tests to use this. -- Thanks, -Torsten
