Skip to content

Commit

Permalink
Renaming Doctrine2 to Doctrine (#184)
Browse files Browse the repository at this point in the history
* Renaming Doctrine2 -> Doctrine

Co-authored-by: Dieter Beck <beck.worma@gmail.com>
  • Loading branch information
ThomasLandauer and W0rma committed Mar 12, 2024
1 parent e3fd1e4 commit 666c35c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -25,7 +25,7 @@
},
"require-dev": {
"codeception/module-asserts": "^3.0",
"codeception/module-doctrine2": "^3.0",
"codeception/module-doctrine": "^3.1",
"doctrine/orm": "^2.10",
"symfony/browser-kit": "^5.4 | ^6.4 | ^7.0",
"symfony/cache": "^5.4 | ^6.4 | ^7.0",
Expand Down
4 changes: 2 additions & 2 deletions src/Codeception/Module/Symfony.php
Expand Up @@ -62,7 +62,7 @@
* and [HttpKernel Component](https://symfony.com/doc/current/components/http_kernel.html) to emulate requests and test response.
*
* * Access Symfony services through the dependency injection container: [`$I->grabService(...)`](#grabService)
* * Use Doctrine to test against the database: `$I->seeInRepository(...)` - see [Doctrine Module](https://codeception.com/docs/modules/Doctrine2)
* * Use Doctrine to test against the database: `$I->seeInRepository(...)` - see [Doctrine Module](https://codeception.com/docs/modules/Doctrine)
* * Assert that emails would have been sent: [`$I->seeEmailIsSent()`](#seeEmailIsSent)
* * Tests are wrapped into Doctrine transaction to speed them up.
* * Symfony Router can be cached between requests to speed up testing.
Expand Down Expand Up @@ -118,7 +118,7 @@
* enabled:
* - Symfony:
* part: services
* - Doctrine2:
* - Doctrine:
* depends: Symfony
* - WebDriver:
* url: http://example.com
Expand Down

0 comments on commit 666c35c

Please sign in to comment.