run code through perltidy
[gitmo/MooseX-ClassAttribute.git] / t / 03-introspection.t
index bfe6727..fa87acf 100644 (file)
@@ -16,7 +16,17 @@ ok( HasClassAttribute->meta()->get_class_attribute('ObjectCount')
                      ->meta()->does_role('MooseX::ClassAttribute::Role::Meta::Attribute'),
     'get_class_attribute_list returns an object which does the MooseX::ClassAttribute::Role::Meta::Attribute role' );
 
-my @ca = qw( Delegatee LazyAttribute ManyNames Mapping ObjectCount ReadOnlyAttribute WeakAttribute );
+my @ca = qw( Delegatee
+             LazyAttribute
+             ManyNames
+             Mapping
+             ObjectCount
+             ReadOnlyAttribute
+             WeakAttribute
+             Built
+             LazyBuilt
+             Triggerish
+           );
 
 is_deeply( [ sort HasClassAttribute->meta()->get_class_attribute_list() ],
            [ sort @ca ],