1use Test::More;
2use strict; use warnings FATAL => 'all';
3
4use Lowu;
5
6my $arr = [];
7
8is_deeply [ $arr->all ], [], 'boxed empty array all() ok';
9
10$arr->push( 1 .. 5 );
11is_deeply [ $arr->all ], [ 1 .. 5 ], 'boxed array all() ok';
12is_deeply [ $arr->export ], [ 1 .. 5 ], 'boxed array export() ok';
13is_deeply [ $arr->elements ], [ 1 .. 5 ], 'boxed array elements() ok';
14
15done_testing;
16