2014-08-16 11:21:21 +02:00

26 lines
929 B
PHP

<?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(
'connectionString' => 'mysql:host=localhost;dbname=humhub_test',
'username' => 'root',
'password' => '123qwe',
),
'cache' => array(
'class' => 'CDummyCache',
),
),
'import' => array(
'system.test.*',
),
'params' => array(
'installed' => false,
'dynamicConfigFile' => dirname(__FILE__) . '/local/_settings_test.php'
),
));