allow configuring ResultSets through the SchemaProxy trait
[catagits/Catalyst-Model-DBIC-Schema.git] / t / lib / AnotherSchemaClass / ResultSet / Users.pm
CommitLineData
21d8159f 1package AnotherSchemaClass::ResultSet::Users;
2
3use strict;
4use warnings;
5use base 'DBIx::Class::ResultSet';
6
7__PACKAGE__->mk_group_accessors(inherited => qw/
8 rs_config_option
9/);
10
111;