--- t/00-model-hrEduOrg.t 2008/05/26 17:51:43 128 +++ t/00-model-hrEduOrg.t 2008/06/19 21:24:26 208 @@ -8,7 +8,7 @@ =cut -use Jifty::Test tests => 11; +use Jifty::Test tests => 12; # Make sure we can load the model use_ok('A3C::Model::hrEduOrg'); @@ -67,6 +67,11 @@ ok($o->id, "hrEduOrg create returned another value"); isnt($o->id, $id, "And it is different from the previous one"); +# multi-value rollup +use Data::Dump qw/dump/; +dump( $o->cn ); +is( $o->cn, 'cn <*> RFC2256: common name(s) for which the entity is known by', 'ARRAY value'); + # Searches in general my $collection = A3C::Model::hrEduOrgCollection->new(current_user => $system_user); $collection->unlimit;