Add dsn to pgsql
diff --git a/tests/mocks/database/config/pdo/pgsql.php b/tests/mocks/database/config/pdo/pgsql.php
index b2f409d..5196e9a 100644
--- a/tests/mocks/database/config/pdo/pgsql.php
+++ b/tests/mocks/database/config/pdo/pgsql.php
@@ -4,7 +4,7 @@
 	
 	// Typical Database configuration
 	'pdo/pgsql' => array(
-		'dsn' => '',
+		'dsn' => 'pgsql:host=localhost;port=5432;dbname=ci_test;',
 		'hostname' => 'localhost',
 		'username' => 'postgres',
 		'password' => '',
@@ -24,7 +24,7 @@
 		'pdodriver' => 'pgsql',
 		'failover' => array(
 			array(
-				'dsn' => '',
+				'dsn' => 'pgsql:host=localhost;port=5432;dbname=ci_test;',
 				'hostname' => 'localhost',
 				'username' => 'postgres',
 				'password' => '',