Fix the logic somewhat
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / DefaultSetup.pm
index 5e80f25..8f6f704 100644 (file)
@@ -1,29 +1,6 @@
-package TestAppCustomContainer::Model::Foo;
+package TestAppCustomContainer::Model::DefaultSetup;
 use Moose;
 extends 'Catalyst::Model';
-with 'TestAppCustomContainer::Role::ACCEPT_CONTEXT';
-
-has bar_got_it => (
-    traits  => ['Counter'],
-    is      => 'ro',
-    isa     => 'Int',
-    default => 0,
-    handles => {
-        inc_bar_got_it => 'inc',
-    },
-);
-
-has baz_got_it => (
-    traits  => ['Counter'],
-    is      => 'ro',
-    isa     => 'Int',
-    default => 0,
-    handles => {
-        inc_baz_got_it => 'inc',
-    },
-);
-
-sub COMPONENT { shift->new() }
 
 __PACKAGE__->meta->make_immutable;