1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Better display and description

Confirmation message isn’t required since it is written in the delete description
This commit is contained in:
Jeremy Benoist 2016-10-08 19:39:50 +02:00
parent eed812afd0
commit 876d77a67d
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
14 changed files with 72 additions and 54 deletions

View file

@ -581,7 +581,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$crawler = $client->request('GET', '/config');
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
$this->assertContains('config.form_user.delete_account', $body[0]);
$this->assertContains('config.form_user.delete.button', $body[0]);
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
@ -602,7 +602,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$crawler = $client->request('GET', '/config');
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
$this->assertNotContains('config.form_user.delete_account', $body[0]);
$this->assertNotContains('config.form_user.delete.button', $body[0]);
$client->request('GET', '/account/delete');
$this->assertEquals(403, $client->getResponse()->getStatusCode());
@ -649,6 +649,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$em->flush();
$this->logInAs('wallace');
$loggedInUserId = $this->getLoggedInUserId();
// create entry to check after user deletion
// that this entry is also deleted
@ -685,7 +686,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$entries = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findByUser($this->getLoggedInUserId());
->findByUser($loggedInUserId);
$this->assertEmpty($entries);
}