do all the renaming that was discussed
[gitmo/Moose.git] / t / 070_attribute_helpers / 205_trait_list.t
index 1c342e6..d3ca58e 100644 (file)
@@ -16,7 +16,7 @@ my $up;
     use Moose::AttributeHelpers;
 
     has '_options' => (
-        traits   => ['Collection::List'],
+        traits   => ['List'],
         is       => 'ro',
         isa      => 'ArrayRef[Int]',
         init_arg => 'options',
@@ -112,7 +112,7 @@ is_deeply( [ $stuff->descending ], [ reverse 1 .. 10 ] );
 ## test the meta
 
 my $options = $stuff->meta->get_attribute('_options');
-does_ok( $options, 'Moose::AttributeHelpers::Trait::Collection::List' );
+does_ok( $options, 'Moose::Meta::Attribute::Trait::Native::List' );
 
 is_deeply(
     $options->handles,