added result_roles and result_roles_map options, fixed a bug with accessor collision...
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / TestRole.pm
diff --git a/t/lib/TestRole.pm b/t/lib/TestRole.pm
new file mode 100644 (file)
index 0000000..97fa561
--- /dev/null
@@ -0,0 +1,7 @@
+package TestRole;
+
+use Moose::Role;
+
+sub test_role_method { 'test_role_method works' }
+
+1;