allow configuring ResultSets through the SchemaProxy trait
[catagits/Catalyst-Model-DBIC-Schema.git] / t / lib / ASchemaClass.pm
index 09c4f36..db1c6fc 100644 (file)
@@ -2,8 +2,9 @@ package ASchemaClass;
 
 use base 'DBIx::Class::Schema';
 
-__PACKAGE__->mk_group_accessors(inherited => 'a_schema_option');
-
 __PACKAGE__->load_classes;
 
+use Moose;
+has a_schema_option => (is => 'rw');
+
 1;