allow configuring ResultSets through the SchemaProxy trait
[catagits/Catalyst-Model-DBIC-Schema.git] / t / lib / AnotherSchemaClass / ResultSet / Users.pm
diff --git a/t/lib/AnotherSchemaClass/ResultSet/Users.pm b/t/lib/AnotherSchemaClass/ResultSet/Users.pm
new file mode 100644 (file)
index 0000000..f422ff8
--- /dev/null
@@ -0,0 +1,11 @@
+package AnotherSchemaClass::ResultSet::Users;
+
+use strict;
+use warnings;
+use base 'DBIx::Class::ResultSet';
+
+__PACKAGE__->mk_group_accessors(inherited => qw/
+    rs_config_option
+/);
+
+1;