First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / MyFoo.pm
diff --git a/t/testlib/MyFoo.pm b/t/testlib/MyFoo.pm
deleted file mode 100644 (file)
index d645d3d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-package # hide from PAUSE 
-    MyFoo;
-
-BEGIN { unshift @INC, './t/testlib'; }
-use base 'MyBase';
-
-use strict;
-
-__PACKAGE__->set_table();
-__PACKAGE__->columns(All => qw/myid name val tdate/);
-__PACKAGE__->has_a(
-       tdate   => 'Date::Simple',
-       inflate => sub { Date::Simple->new(shift) },
-       deflate => 'format',
-);
-#__PACKAGE__->find_column('tdate')->placeholder("IF(1, CURDATE(), ?)");
-
-sub create_sql {
-       return qq{
-    myid mediumint not null auto_increment primary key,
-    name varchar(50) not null default '',
-    val  char(1) default 'A',
-    tdate date not null
-  };
-}
-
-1;
-