diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-02 10:14:04 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-02 10:14:04 +0200 |
commit | a9572fa67e4778f7d0a42898c603fddcb64660f8 (patch) | |
tree | 48a7785021377dd3e7f8fcd3ff41f3cf650c327b /tests/mocks/database/config/sqlite.php | |
parent | 2efd029d012fedd421540d14b8a5759032c0b5c6 (diff) | |
parent | d3891f4f50e3cb3cfd1b6491088d759d586e2302 (diff) |
Merge upstream branch
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 |