Composite now implemented.
[gitmo/MooseX-AttributeHelpers.git] / t / 001_basic_counter.t
index 1f7d760..cfba25d 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 14;
+use Test::More tests => 13;
 
 BEGIN {
     use_ok('MooseX::AttributeHelpers');   
@@ -54,8 +54,6 @@ is($page->counter, 0, '... got the original value');
 my $counter = $page->meta->get_attribute('counter');
 isa_ok($counter, 'MooseX::AttributeHelpers::Counter');
 
-is($counter->helper_type, 'Num', '... got the expected helper type');
-
 is($counter->type_constraint->name, 'Int', '... got the expected type constraint');
 
 is_deeply($counter->provides, {