Skip to content

Commit 3638be0

Browse files
committed
Merge branch 'master' of github.com:Codeception/codeception.github.com
2 parents ea5061b + 5b994b2 commit 3638be0

10 files changed

Lines changed: 38 additions & 11 deletions

File tree

addons.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ Integrate Codeception to CakePHP v2.* projects
2727

2828
This module provides additional helpers for your test to help with date and time comparisons.
2929

30+
#### [Doctrine1](https://github.com/Codeception/Doctrine1Module)
31+
32+
Module for Doctrine 1.x ORM (deprecated in Codeception 2.1)
33+
3034
#### [IM](https://github.com/nathanmac/im-codeception-module)
3135

3236
This module allows the testing against external messaging services as well as triggering notifications via your tests, currently supports HipChat messaging service.
@@ -43,6 +47,10 @@ Codeception module to test email using Mailtrap.io
4347

4448
Integrates Mockery into Codeception tests.
4549

50+
#### [Symfony1](https://github.com/Codeception/symfony1module)
51+
52+
Module for symfony 1.x framework (deprecated in Codeception 2.1)
53+
4654
#### [Remote File Attachment](https://github.com/phmLabs/codeception-module-attachfileremote)
4755
This module helps to upload files when using webdriver via remote connection.
4856

builds.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ title: Codeception Builds
44
---
55

66

7+
## 2.1
8+
*Requires: PHP 5.4 and higher + CURL*
9+
10+
* **[Download Latest 2.1 Release](http://codeception.com/releases/2.1.0-beta/codecept.phar)**
11+
* [2.1.0-beta](http://codeception.com/releases/2.1.0-beta/codecept.phar)
12+
713
## 2.0
814
*Requires: PHP 5.4 and higher + CURL*
915

@@ -16,6 +22,7 @@ title: Codeception Builds
1622
* [2.0.4](http://codeception.com/releases/2.0.4/codecept.phar)
1723
* [2.0.3](http://codeception.com/releases/2.0.3/codecept.phar)
1824
* [2.0.2](http://codeception.com/releases/2.0.2/codecept.phar)
25+
* [2.0.13](http://codeception.com/releases/2.0.13/codecept.phar)
1926
* [2.0.12](http://codeception.com/releases/2.0.12/codecept.phar)
2027
* [2.0.11](http://codeception.com/releases/2.0.11/codecept.phar)
2128
* [2.0.10](http://codeception.com/releases/2.0.10/codecept.phar)

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

codecept.phar

867 Bytes
Binary file not shown.

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

releases/2.0.13/codecept.phar

1.21 MB
Binary file not shown.

releases/2.1.0-beta/codecept.phar

1.22 MB
Binary file not shown.

0 commit comments

Comments
 (0)