First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Thing.pm
diff --git a/t/testlib/Thing.pm b/t/testlib/Thing.pm
deleted file mode 100644 (file)
index d71e22a..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package Thing;
-use base 'DBIx::Class::Test::SQLite';
-
-Thing->set_table("thing");
-Thing->columns(All => qw(id that_thing));
-
-sub create_sql {
-    return qq{
-        id              INTEGER,
-        that_thing      INTEGER
-    };
-}
-
-1;