First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Lazy.pm
diff --git a/t/testlib/Lazy.pm b/t/testlib/Lazy.pm
deleted file mode 100644 (file)
index b30c34b..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package # hide from PAUSE 
-    Lazy;
-
-BEGIN { unshift @INC, './t/testlib'; }
-use base 'DBIx::Class::Test::SQLite';
-use strict;
-
-__PACKAGE__->set_table("Lazy");
-__PACKAGE__->columns('Primary',   qw(this));
-__PACKAGE__->columns('Essential', qw(opop));
-__PACKAGE__->columns('things',    qw(this that));
-__PACKAGE__->columns('horizon',   qw(eep orp));
-__PACKAGE__->columns('vertical',  qw(oop opop));
-
-sub create_sql {
-       return qq{
-               this INTEGER,
-               that INTEGER,
-               eep  INTEGER,
-               orp  INTEGER,
-               oop  INTEGER,
-               opop INTEGER
-       };
-}
-
-1;
-