X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FTests%2FController%2FConfigControllerTest.php;h=8cdedfda38bdf66bf6c47cb8f76a78de55830afb;hb=733b2cf19b5d5a93617f24b2447b9a30ba22d303;hp=db38d86579e170f0e33c39221c78935d54907b1d;hpb=c4c062cce00d8358b9a9c836aadcd8997f2fb069;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php index db38d865..8cdedfda 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php @@ -392,6 +392,11 @@ class ConfigControllerTest extends WallabagCoreTestCase $this->assertTrue(false !== $user); $this->assertTrue($user->isEnabled()); + $this->assertEquals('material', $user->getConfig()->getTheme()); + $this->assertEquals(12, $user->getConfig()->getItemsPerPage()); + $this->assertEquals(50, $user->getConfig()->getRssLimit()); + $this->assertEquals('en', $user->getConfig()->getLanguage()); + $this->assertEquals(1, $user->getConfig()->getReadingSpeed()); } public function testRssUpdateResetToken()