db.php 389 B

12345678910111213141516
  1. <?php
  2. /**
  3. * The test database settings. These get merged with the global settings.
  4. *
  5. * This environment is primarily used by unit tests, to run on a controlled environment.
  6. */
  7. return array(
  8. 'default' => array(
  9. 'connection' => array(
  10. 'dsn' => 'mysql:host=localhost;dbname=fuel_test',
  11. 'username' => 'fuel_app',
  12. 'password' => 'super_secret_password',
  13. ),
  14. ),
  15. );