Skip to content

Commit 666c35c

Browse files
Renaming Doctrine2 to Doctrine (#184)
* Renaming Doctrine2 -> Doctrine Co-authored-by: Dieter Beck <[email protected]>
1 parent e3fd1e4 commit 666c35c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"require-dev": {
2727
"codeception/module-asserts": "^3.0",
28-
"codeception/module-doctrine2": "^3.0",
28+
"codeception/module-doctrine": "^3.1",
2929
"doctrine/orm": "^2.10",
3030
"symfony/browser-kit": "^5.4 | ^6.4 | ^7.0",
3131
"symfony/cache": "^5.4 | ^6.4 | ^7.0",

src/Codeception/Module/Symfony.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
* and [HttpKernel Component](https://symfony.com/doc/current/components/http_kernel.html) to emulate requests and test response.
6363
*
6464
* * Access Symfony services through the dependency injection container: [`$I->grabService(...)`](#grabService)
65-
* * Use Doctrine to test against the database: `$I->seeInRepository(...)` - see [Doctrine Module](https://codeception.com/docs/modules/Doctrine2)
65+
* * Use Doctrine to test against the database: `$I->seeInRepository(...)` - see [Doctrine Module](https://codeception.com/docs/modules/Doctrine)
6666
* * Assert that emails would have been sent: [`$I->seeEmailIsSent()`](#seeEmailIsSent)
6767
* * Tests are wrapped into Doctrine transaction to speed them up.
6868
* * Symfony Router can be cached between requests to speed up testing.
@@ -118,7 +118,7 @@
118118
* enabled:
119119
* - Symfony:
120120
* part: services
121-
* - Doctrine2:
121+
* - Doctrine:
122122
* depends: Symfony
123123
* - WebDriver:
124124
* url: http://example.com

0 commit comments

Comments
 (0)