Fixed DBICTest Schema class names, added class_resolver system to make them work
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
index 2069280..be18952 100644 (file)
@@ -1,9 +1,9 @@
-package DBICTest::FourKeys;
+package DBICTest::Schema::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/);
+DBICTest::Schema::FourKeys->table('fourkeys');
+DBICTest::Schema::FourKeys->add_columns(qw/foo bar hello goodbye/);
+DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
 
 1;