diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-30 01:29:11 +0200 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-30 01:29:11 +0200 |
commit | ee2f5d08c64d96b7abc7195bcd1b6a3fd67b5b42 (patch) | |
tree | 133e61f62e6213361713b8ff9b1690afb9daded2 /tests/mocks/database/config/mysql.php | |
parent | dba9437218a5d8bedb75464b943e8f920d220a25 (diff) |
Multi database setup
Diffstat (limited to 'tests/mocks/database/config/mysql.php')
-rw-r--r-- | tests/mocks/database/config/mysql.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/mocks/database/config/mysql.php b/tests/mocks/database/config/mysql.php new file mode 100644 index 000000000..ace0a31b1 --- /dev/null +++ b/tests/mocks/database/config/mysql.php @@ -0,0 +1,34 @@ +<?php + +return array( + + // Typical Database configuration + 'mysql' => array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'travis', + 'password' => '', + 'database' => 'ci_test', + 'dbdriver' => 'mysql', + ), + + // Database configuration with failover + 'mysql_failover' => array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'not_travis', + 'password' => 'wrong password', + 'database' => 'not_ci_test', + 'dbdriver' => 'mysql', + 'failover' => array( + array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'travis', + 'password' => '', + 'database' => 'ci_test', + 'dbdriver' => 'mysql', + ), + ), + ), +);
\ No newline at end of file |