2014-08-08 06:04:39 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return CMap::mergeArray(require (dirname(__FILE__) . '/main.php'), array(
|
|
|
|
'components' => array(
|
|
|
|
'fixture' => array(
|
|
|
|
'class' => 'application.components.HDbFixtureManager',
|
|
|
|
'basePath' => realpath(dirname(__FILE__) . '/../tests/fixtures'),
|
|
|
|
),
|
|
|
|
'db' => array(
|
2014-08-16 11:21:21 +02:00
|
|
|
'connectionString' => 'mysql:host=localhost;dbname=humhub_test',
|
2014-08-08 06:04:39 +02:00
|
|
|
'username' => 'root',
|
|
|
|
'password' => '123qwe',
|
|
|
|
),
|
|
|
|
'cache' => array(
|
|
|
|
'class' => 'CDummyCache',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'import' => array(
|
|
|
|
'system.test.*',
|
|
|
|
),
|
|
|
|
'params' => array(
|
2014-08-10 19:49:38 +02:00
|
|
|
'installed' => false,
|
2014-08-08 06:04:39 +02:00
|
|
|
'dynamicConfigFile' => dirname(__FILE__) . '/local/_settings_test.php'
|
|
|
|
),
|
|
|
|
));
|