hopefully fixup pg tests (thanks to zby, all bugs mine)
Matt S Trout [Fri, 26 May 2006 14:36:38 +0000 (14:36 +0000)]
t/72pg.t
t/lib/DBICTest/Schema.pm

index 3e55bcb..f0bb3f8 100644 (file)
--- a/t/72pg.t
+++ b/t/72pg.t
@@ -5,6 +5,20 @@ use Test::More;
 use lib qw(t/lib);
 use DBICTest;
 
+{
+  package DBICTest::Schema::Casecheck;
+
+  use strict;
+  use warnings;
+  use base 'DBIx::Class';
+
+  __PACKAGE__->load_components(qw/PK::Auto Core/);
+  __PACKAGE__->table('casecheck');
+  __PACKAGE__->add_columns(qw/id name NAME uc_name/);
+  __PACKAGE__->set_primary_key('id');
+
+}
+
 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
 
 #warn "$dsn $user $pass";
@@ -14,6 +28,7 @@ plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
 
 plan tests => 8;
 
+DBICTest::Schema->load_classes( 'Casecheck' );
 DBICTest::Schema->compose_connection('PgTest' => $dsn, $user, $pass);
 
 my $dbh = PgTest->schema->storage->dbh;
index 1fd503c..72e1da6 100644 (file)
@@ -11,7 +11,6 @@ __PACKAGE__->load_classes(qw/
   CD
   Link
   Bookmark
-  #Casecheck
   #dummy
   Track
   Tag