diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-30 10:29:56 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-30 10:29:56 +0200 |
commit | 3396d531e2f3864d06860cdbdf7320bc121f77f1 (patch) | |
tree | cbc9ff0e1e574db87bbb3a31c783eb4dcca86dae /tests/mocks/database/config/sqlite.php | |
parent | 64bfa0634c991ef98ec3d2d44d862ea99d839854 (diff) | |
parent | 2c4c5e1946293e1c7a834112a8d271e890cc1c71 (diff) |
Merge pull request #1228 from toopay/database-test
Multiple database drivers testing
Diffstat (limited to 'tests/mocks/database/config/sqlite.php')
-rw-r--r-- | tests/mocks/database/config/sqlite.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/mocks/database/config/sqlite.php b/tests/mocks/database/config/sqlite.php new file mode 100644 index 000000000..cf428f473 --- /dev/null +++ b/tests/mocks/database/config/sqlite.php @@ -0,0 +1,34 @@ +<?php + +return array( + + // Typical Database configuration + 'sqlite' => array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'sqlite', + 'password' => 'sqlite', + 'database' => realpath(__DIR__.'/..').'/ci_test.sqlite', + 'dbdriver' => 'sqlite', + ), + + // Database configuration with failover + 'sqlite_failover' => array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'sqlite', + 'password' => 'sqlite', + 'database' => '../not_exists.sqlite', + 'dbdriver' => 'sqlite', + 'failover' => array( + array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => 'sqlite', + 'password' => 'sqlite', + 'database' => realpath(__DIR__.'/..').'/ci_testf.sqlite', + 'dbdriver' => 'sqlite', + ), + ), + ), +);
\ No newline at end of file |