Test cleanup:
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Binary.pm
diff --git a/t/cdbi/testlib/Binary.pm b/t/cdbi/testlib/Binary.pm
deleted file mode 100644 (file)
index 58d2bf4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package # hide from PAUSE
-    Binary;
-
-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;
-