2012-01-26 11:01:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return CMap::mergeArray(
|
|
|
|
|
require(dirname(__FILE__).'/main.php'),
|
|
|
|
|
array(
|
|
|
|
|
'components'=>array(
|
|
|
|
|
'fixture'=>array(
|
|
|
|
|
'class'=>'system.test.CDbFixtureManager',
|
|
|
|
|
),
|
|
|
|
|
'db'=>array(
|
2012-01-26 11:48:45 +00:00
|
|
|
'connectionString' => 'mysql:host=localhost;dbname=intranet_test',
|
|
|
|
|
'emulatePrepare' => true,
|
|
|
|
|
'username' => 'root',
|
|
|
|
|
'password' => '',
|
|
|
|
|
'charset' => 'utf8',
|
2012-01-26 11:01:38 +00:00
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
);
|