First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Binary.pm
diff --git a/t/testlib/Binary.pm b/t/testlib/Binary.pm
deleted file mode 100644 (file)
index 10ba5b1..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package # hide from PAUSE
-    Binary;
-
-BEGIN { unshift @INC, './t/testlib'; }
-
-use strict;
-use base 'PgBase';
-
-__PACKAGE__->table(cdbibintest => 'cdbibintest');
-__PACKAGE__->sequence('binseq');
-__PACKAGE__->columns(All => qw(id bin));
-
-# __PACKAGE__->data_type(bin => DBI::SQL_BINARY);
-
-sub schema { "id INTEGER, bin BYTEA" }
-
-1;
-