Failing test to highlight mssql autoconnect regression
Peter Rabbitson [Sun, 15 Nov 2009 11:09:17 +0000 (11:09 +0000)]
t/74mssql.t

index 007b9d3..f2059be 100644 (file)
@@ -171,6 +171,16 @@ SQL
   $rs->reset;
 }
 
+# test op-induced autoconnect
+lives_ok (sub {
+
+  my $schema =  DBICTest::Schema->clone;
+  $schema->connection($dsn, $user, $pass);
+
+  my $artist = $schema->resultset ('Artist')->search ({}, { order_by => 'artistid' })->next;
+  is ($artist->id, 1, 'Artist retrieved successfully');
+}, 'Query-induced autoconnect works');
+
 # clean up our mess
 END {
   if (my $dbh = eval { $schema->storage->dbh }) {