* Fixed the test plan in 72pg.t.
Norbert Buchmuller [Tue, 25 Nov 2008 04:38:08 +0000 (05:38 +0100)]
 * Fixed SQLA version check in SKIP tests (it's 1.49 in current 1.50RC branch).

t/72pg.t
t/95sql_maker.t
t/95sql_maker_quote.t

index 4c7721f..951be49 100644 (file)
--- a/t/72pg.t
+++ b/t/72pg.t
@@ -47,7 +47,7 @@ plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test '.
     unless ($dsn && $user && $pass);
 
 
-plan tests => 36;
+plan tests => 37;
 
 DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' );
 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
@@ -133,8 +133,8 @@ is_deeply($type_info, $test_type_info,
           'columns_info_for - column data types');
 
 SKIP: {
-  skip "SQL::Abstract < 1.50 does not pass through arrayrefs", 3
-    if $SQL::Abstract::VERSION < 1.50;
+  skip "SQL::Abstract < 1.49 does not pass through arrayrefs", 3
+    if $SQL::Abstract::VERSION < 1.49;
 
   lives_ok {
     $schema->resultset('ArrayTest')->create({
index 900e604..ee6ccdd 100644 (file)
@@ -22,7 +22,8 @@ my $sql_maker = $schema->storage->sql_maker;
 
 
 SKIP: {
-  skip "SQL::Abstract < 1.50 does not pass through arrayrefs", 2 if $SQL::Abstract::VERSION < 1.50;
+  skip "SQL::Abstract < 1.49 does not pass through arrayrefs", 2
+    if $SQL::Abstract::VERSION < 1.49;
 
   my ($sql, @bind) = $sql_maker->insert(
             'lottery',
index 5fef846..162c59f 100644 (file)
@@ -112,7 +112,8 @@ is_same_sql_bind(
 );
 
 SKIP: {
-  skip "SQL::Abstract < 1.50 does not support hashrefs in order_by", 2 if $SQL::Abstract::VERSION < 1.50;
+  skip "SQL::Abstract < 1.49 does not support hashrefs in order_by", 2
+    if $SQL::Abstract::VERSION < 1.49;
 
   ($sql, @bind) = $sql_maker->select(
             [