| 12345678910111213141516 |
- <?php
- /**
- * The test database settings. These get merged with the global settings.
- *
- * This environment is primarily used by unit tests, to run on a controlled environment.
- */
- return array(
- 'default' => array(
- 'connection' => array(
- 'dsn' => 'mysql:host=localhost;dbname=fuel_test',
- 'username' => 'fuel_app',
- 'password' => 'super_secret_password',
- ),
- ),
- );
|