Modified default @tests value and updated READMEs.

This commit is contained in:
Yasser Hassan 2015-10-21 03:07:07 +02:00
parent 0bfc5f9af5
commit 4e8ed67326
3 changed files with 23 additions and 4 deletions

View File

@ -96,6 +96,7 @@ return [
];
```
**NOTE:** Yii won't create the database for you, this has to be done manually before you can access it.
Also check and edit the other files in the `config/` directory to customize your application.
**NOTES:**
- Yii won't create the database for you, this has to be done manually before you can access it.
- Check and edit the other files in the `config/` directory to customize your application as required.
- Refer to the README in the `tests` direcotry for information specific to basic application tests.

View File

@ -1,6 +1,6 @@
<?php
Yii::setAlias('@tests', dirname(__DIR__) . '/tests');
Yii::setAlias('@tests', dirname(__DIR__) . '/tests/codeception');
$params = require(__DIR__ . '/params.php');
$db = require(__DIR__ . '/db.php');
@ -25,6 +25,13 @@ $config = [
'db' => $db,
],
'params' => $params,
/*
'controllerMap' => [
'fixture' => [ // Fixture generation command line.
'class' => 'yii\faker\FixtureController',
],
],
*/
];
if (YII_ENV_DEV) {

View File

@ -62,6 +62,17 @@ webserver. In the `web` directory execute the following:
codecept run unit
```
Fixtures Default Configuration
------------------------------
The `fixture` commands refer to the following `ActiveFixture` configuration by default:
- Fixtures path: `@tests/unit/fixtures`
- Fixtures data path: `@tests/unit/fixtures/data`
- Template files path: `@tests/unit/templates/fixtures`
- Namespace: `tests\unit\fixtures`
Where `@tests` refers to `@app/tests/codeception`.
Code coverage support
---------------------