use v6;
use Test;

# L<S32::Containers/"Array"/"=item ">

=begin pod

built-in "Array" tests

=end pod

plan 3;

my $array_obj = Array.new(4, 5, 6);
is($array_obj.WHAT, Array, 'Creating a new list object with new works.');
is($array_obj, list(4, 5, 6), 'The list object contains the right values.');
is(+$array_obj, 3, 'Finding the length funcitons properly.');

# vim: ft=perl6