diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-04 13:35:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 13:35:13 +0200 |
commit | f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4 (patch) | |
tree | de209b59a4b3225b1eb54b7b66c975069cbd1d2d /tests/Wallabag/UserBundle | |
parent | f0b2d57154832fdd6255a1bef0df34a7144806c5 (diff) | |
parent | 9a6ac0b47a75f7cc8c8541b3e3fd3f40a3712f4f (diff) | |
download | wallabag-f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4.tar.gz wallabag-f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4.tar.zst wallabag-f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4.zip |
Merge pull request #2359 from wallabag/user-config
Create config even if user is disabled
Diffstat (limited to 'tests/Wallabag/UserBundle')
-rw-r--r-- | tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php b/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php index 0cebd3e4..a78b77bc 100644 --- a/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php +++ b/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php | |||
@@ -41,26 +41,6 @@ class CreateConfigListenerTest extends \PHPUnit_Framework_TestCase | |||
41 | $this->response = Response::create(); | 41 | $this->response = Response::create(); |
42 | } | 42 | } |
43 | 43 | ||
44 | public function testWithInvalidUser() | ||
45 | { | ||
46 | $user = new User(); | ||
47 | $user->setEnabled(false); | ||
48 | |||
49 | $event = new FilterUserResponseEvent( | ||
50 | $user, | ||
51 | $this->request, | ||
52 | $this->response | ||
53 | ); | ||
54 | |||
55 | $this->em->expects($this->never())->method('persist'); | ||
56 | $this->em->expects($this->never())->method('flush'); | ||
57 | |||
58 | $this->dispatcher->dispatch( | ||
59 | FOSUserEvents::REGISTRATION_COMPLETED, | ||
60 | $event | ||
61 | ); | ||
62 | } | ||
63 | |||
64 | public function testWithValidUser() | 44 | public function testWithValidUser() |
65 | { | 45 | { |
66 | $user = new User(); | 46 | $user = new User(); |