1use Test::More;
2use strict; use warnings FATAL => 'all';
3
4use List::Objects::WithUtils 'array';
5
6my $arr = array;
7ok $arr->count == 0, 'count returned 0 on empty array';
8$arr->push( 1, 2, 3);
9ok $arr->count == 3, 'count returned correct item count';
10
11done_testing;
12