First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / examples / Schema / MyDatabase / Main / Result / Artist.pm
diff --git a/t/examples/Schema/MyDatabase/Main/Result/Artist.pm b/t/examples/Schema/MyDatabase/Main/Result/Artist.pm
deleted file mode 100644 (file)
index ec78501..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-package MyDatabase::Main::Result::Artist;
-use base qw/DBIx::Class/;
-__PACKAGE__->load_components(qw/PK::Auto Core/);
-__PACKAGE__->table('artist');
-__PACKAGE__->add_columns(qw/ artistid name /);
-__PACKAGE__->set_primary_key('artistid');
-__PACKAGE__->has_many('cds' => 'MyDatabase::Main::Result::Cd');
-
-1;
-