First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Blurb.pm
diff --git a/t/cdbi/testlib/Blurb.pm b/t/cdbi/testlib/Blurb.pm
new file mode 100644 (file)
index 0000000..a112f47
--- /dev/null
@@ -0,0 +1,19 @@
+package # hide from PAUSE
+    Blurb;
+
+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;
+