Skip to content

Commit c727ff3

Browse files
committed
updated
1 parent e348ead commit c727ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2015-06-19-codeception-2.1-rc.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ modules:
1818

1919
* Actor classes are moved to `_support` directory. Please **delete all previously generated actor classes** which reside in suites directories. New `AcceptanceTester`, `FunctionalTester`, `UnitTester` classes are expected to be extended with custom methods.
2020
* Modules that share similar interfaces like `WebDriver`, `PhpBrowser`, and framework modules won't run together. You should avoid enabling more than one of those modules in suite config to avoid confusion. If you enable `Laravel5` and `WebDriver` and execute `$I->amOnPage('/')` you can't be sure how this command is exected - will it open a browser window using WebDriver protocol, or it will be handled by Laravel framework directly.
21-
* Cept files should avoid setting their metadata via `$scenario` methods. Instead of calling `$scenario->skip()`, `$scenario->group('firefox')`, etc, it is recommended to set scenario settings with annotations `// @skip`, `// @group firefox`. However if you can skip tests based on a condition: `if (substr(PHP_OS, 0, 3) == 'Win') $scenario->skip()`.
21+
* Cept files should avoid setting their metadata via `$scenario` methods. Instead of calling `$scenario->skip()`, `$scenario->group('firefox')`, etc, it is recommended to set scenario settings with annotations `// @skip`, `// @group firefox`. With this change you can now skip tests based on a condition: `if (substr(PHP_OS, 0, 3) == 'Win') $scenario->skip()`.
2222
* Kohana, Symfony1, Doctrine1 modules were removed and they reside in separate repositories in [Codeception organization](https://github.com/Codeception) on GitHub.
2323

2424
That should be enough to have everything upgraded. We already prepared [updated guides](https://github.com/Codeception/Codeception/tree/master/docs) (they didn't change from 2.1.0-beta). Please try new Codeception and tell us your opinion in comments or on [GitHub](https://github.com/Codeception/Codeception/issues).
2525

26-
Codeception 2.1 can be used with latest Guzzle 6 (as well as previous Guzzle releases). That's the most important change since the beta version. Please see [the changelog](https://github.com/Codeception/Codeception/blob/master/CHANGELOG.md) for more info.
26+
Codeception 2.1 can be used with latest Guzzle 6 (as well as previous Guzzle releases). That's the most important change since the beta version. See [the changelog](https://github.com/Codeception/Codeception/blob/master/CHANGELOG.md) for more info. We are preparing site updates and demo apps to reflect new changes. Stay tuned!
2727

2828

2929
[Download 2.1.0-rc phar](http://codeception.com/releases/2.1.0-rc1/codecept.phar)

0 commit comments

Comments
 (0)