Modified default @tests value and updated READMEs.
This commit is contained in:
parent
0bfc5f9af5
commit
4e8ed67326
@ -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.
|
**NOTES:**
|
||||||
|
- 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.
|
- 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.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
Yii::setAlias('@tests', dirname(__DIR__) . '/tests');
|
Yii::setAlias('@tests', dirname(__DIR__) . '/tests/codeception');
|
||||||
|
|
||||||
$params = require(__DIR__ . '/params.php');
|
$params = require(__DIR__ . '/params.php');
|
||||||
$db = require(__DIR__ . '/db.php');
|
$db = require(__DIR__ . '/db.php');
|
||||||
@ -25,6 +25,13 @@ $config = [
|
|||||||
'db' => $db,
|
'db' => $db,
|
||||||
],
|
],
|
||||||
'params' => $params,
|
'params' => $params,
|
||||||
|
/*
|
||||||
|
'controllerMap' => [
|
||||||
|
'fixture' => [ // Fixture generation command line.
|
||||||
|
'class' => 'yii\faker\FixtureController',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
*/
|
||||||
];
|
];
|
||||||
|
|
||||||
if (YII_ENV_DEV) {
|
if (YII_ENV_DEV) {
|
||||||
|
@ -62,6 +62,17 @@ webserver. In the `web` directory execute the following:
|
|||||||
codecept run unit
|
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
|
Code coverage support
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user