1use Test::More tests => 2;
2
3use Mac::PropertyList;
4
5########################################################################
6# Test the dict bits
7my $dict = Mac::PropertyList::dict->new();
8isa_ok( $dict, "Mac::PropertyList::dict" );
9
10########################################################################
11# Test the array bits
12my $array = Mac::PropertyList::array->new();
13isa_ok( $array, "Mac::PropertyList::array" );
14