Merge pull request #30 from YasserHassan/master
Modified default @tests value and updated READMEs.
This commit is contained in:
commit
80ea7830db
@ -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.
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
---------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user