Schema support added, DBICTest refactored to use it
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
diff --git a/t/lib/DBICTest/Schema/FourKeys.pm b/t/lib/DBICTest/Schema/FourKeys.pm
new file mode 100644 (file)
index 0000000..2069280
--- /dev/null
@@ -0,0 +1,9 @@
+package DBICTest::FourKeys;
+
+use base 'DBIx::Class::Core';
+
+DBICTest::FourKeys->table('fourkeys');
+DBICTest::FourKeys->add_columns(qw/foo bar hello goodbye/);
+DBICTest::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
+
+1;