First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Blurb.pm
diff --git a/t/testlib/Blurb.pm b/t/testlib/Blurb.pm
deleted file mode 100644 (file)
index 4f4baf0..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package # hide from PAUSE
-    Blurb;
-
-BEGIN { unshift @INC, './t/testlib'; }
-
-use strict;
-use base 'DBIx::Class::Test::SQLite';
-
-__PACKAGE__->set_table('Blurbs');
-__PACKAGE__->columns('Primary', 'Title');
-__PACKAGE__->columns('Blurb',   qw/ blurb/);
-
-sub create_sql {
-       return qq{
-                       title                   VARCHAR(255) PRIMARY KEY,
-                       blurb                   VARCHAR(255) NOT NULL
-  }
-}
-
-1;
-