1use Test::More;
2use strict; use warnings FATAL => 'all';
3
4use List::Objects::WithUtils 'array', 'hash';
5
6ok __PACKAGE__->can( 'array' ), 'array ok';
7ok __PACKAGE__->can( 'hash' ),  'hash ok';
8
9ok not( __PACKAGE__->can( 'immarray' ) ), 'immarray not imported';
10
11done_testing;
12