yii2-netdisk/tests/unit/_config.php

18 lines
353 B
PHP
Raw Normal View History

2013-12-29 16:25:22 -05:00
<?php
2013-12-30 09:22:18 -05:00
return yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../config/web.php'),
require(__DIR__ . '/../_config.php'),
[
'components' => [
'fixture' => [
'class' => 'yii\test\DbFixtureManager',
'basePath' => '@tests/unit/fixtures',
],
'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_unit',
],
2013-12-29 16:25:22 -05:00
],
2013-12-30 09:22:18 -05:00
]
);