Skip to content

Commit dbcafa5

Browse files
committed
auto updated documentation
1 parent c442e12 commit dbcafa5

File tree

5 files changed

+23
-11
lines changed

5 files changed

+23
-11
lines changed

changelog.markdown

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ title: Codeception Changelog
77

88
# Changelog
99

10+
#### 2.0.13
11+
12+
* Updated to PHPUnit 4.6
13+
* <strong>[Db]</strong> fixed regression introduced in 2.0.11. `haveInDatabase` works in PostgreSQL on tables with 'id' as primary key. Fix by <strong><a href="https://github.com/akireikin">@akireikin</a></strong> <a href="https://github.com/Codeception/Codeception/issues/1846">#1846</a> <a href="https://github.com/Codeception/Codeception/issues/1761">#1761</a>
14+
* added `--no-rebuild` option to disable automatic actor classes rebuilds *2015-04-24*
15+
* suppressed warnings on failed actor classes auto-rebuilds
16+
* enable group listener for grouping with annotation by <strong><a href="https://github.com/litpuvn">@litpuvn</a></strong> Fixes <a href="https://github.com/Codeception/Codeception/issues/1830">#1830</a>
17+
* unix terminals output improved by calculating screen size. Done by <strong><a href="https://github.com/DexterHD">@DexterHD</a></strong> See <a href="https://github.com/Codeception/Codeception/issues/1858">#1858</a>
18+
* <strong>[Yii2]</strong> Remove line to activate request parsers by <strong><a href="https://github.com/m8rge">@m8rge</a></strong> <a href="https://github.com/Codeception/Codeception/issues/1843">#1843</a>
19+
* <strong>[PhpBrowser]</strong><strong>[Frameworks]</strong> Various `fillField`/`submitForm` improvements by <strong><a href="https://github.com/zbateson">@zbateson</a></strong> See <a href="https://github.com/Codeception/Codeception/issues/1840">#1840</a>. Fixes <a href="https://github.com/Codeception/Codeception/issues/1828">#1828</a>, <a href="https://github.com/Codeception/Codeception/issues/1689">#1689</a>
20+
* Allow following symlinks when searching for tests by <strong><a href="https://github.com/nechutny">@nechutny</a></strong> <a href="https://github.com/Codeception/Codeception/issues/1862">#1862</a>
1021

1122
#### 2.0.12
1223

docs/06-UnitTests.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ function testSavingUser()
200200

201201
{% endhighlight %}
202202

203-
Database will be cleaned and populated after each test, as it happens for acceptance and functional tests.
203+
To enable the database functionality in the unit tests please make sure the `Db` module is part of the enabled module list in the unit.suite.yml configuration file.
204+
The database will be cleaned and populated after each test, as it happens for acceptance and functional tests.
204205
If it's not your required behavior, please change the settings of `Db` module for the current suite.
205206

206207
### Accessing Module

docs/modules/Laravel4.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ $I->dontSeeRecord('users', array('name' => 'davert'));
430430

431431
{% endhighlight %}
432432

433-
* `param` $model
433+
* `param` $tableName
434434
* `param array` $attributes
435435

436436

@@ -511,7 +511,7 @@ $category = $I->grabRecord('users', array('name' => 'davert'));
511511

512512
{% endhighlight %}
513513

514-
* `param` $model
514+
* `param` $tableName
515515
* `param array` $attributes
516516

517517

@@ -589,7 +589,7 @@ $user_id = $I->haveRecord('users', array('name' => 'Davert'));
589589

590590
{% endhighlight %}
591591

592-
* `param` $model
592+
* `param` $tableName
593593
* `param array` $attributes
594594

595595

@@ -958,7 +958,7 @@ $I->seeRecord('users', array('name' => 'davert'));
958958

959959
{% endhighlight %}
960960

961-
* `param` $model
961+
* `param` $tableName
962962
* `param array` $attributes
963963

964964

docs/modules/Laravel5.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ $I->dontSeeRecord('users', array('name' => 'davert'));
417417

418418
{% endhighlight %}
419419

420-
* `param` $model
420+
* `param` $tableName
421421
* `param array` $attributes
422422

423423

@@ -505,7 +505,7 @@ $category = $I->grabRecord('users', array('name' => 'davert'));
505505

506506
{% endhighlight %}
507507

508-
* `param` $model
508+
* `param` $tableName
509509
* `param array` $attributes
510510

511511

@@ -573,7 +573,7 @@ $user_id = $I->haveRecord('users', array('name' => 'Davert'));
573573

574574
{% endhighlight %}
575575

576-
* `param` $model
576+
* `param` $tableName
577577
* `param array` $attributes
578578

579579

@@ -990,7 +990,7 @@ $I->seeRecord('users', array('name' => 'davert'));
990990

991991
{% endhighlight %}
992992

993-
* `param` $model
993+
* `param` $tableName
994994
* `param array` $attributes
995995

996996

docs/modules/REST.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Returns data from the current JSON response using [JSONPath](http://goessner.net
137137
JsonPath is XPath equivalent for querying Json structures. Try your JsonPath expressions [online](http://jsonpath.curiousconcept.com/).
138138
Even for a single value an array is returned.
139139

140-
This method **require [`flow/jsonpath`](https://github.com/FlowCommunications/JSONPath/) library to be installed**.
140+
This method **require [`flow/jsonpath` > 0.2](https://github.com/FlowCommunications/JSONPath/) library to be installed**.
141141

142142
Example:
143143

@@ -288,7 +288,7 @@ Checks if json structure in response matches [JsonPath](http://goessner.net/arti
288288
JsonPath is XPath equivalent for querying Json structures. Try your JsonPath expressions [online](http://jsonpath.curiousconcept.com/).
289289
This assertion allows you to check the structure of response json.
290290

291-
This method **require [`flow/jsonpath`](https://github.com/FlowCommunications/JSONPath/) library to be installed**.
291+
This method **require [`flow/jsonpath` > 0.2](https://github.com/FlowCommunications/JSONPath/) library to be installed**.
292292

293293
{% highlight json %}
294294

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy