]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
add tests for static pages
authorNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 10 Aug 2015 06:19:40 +0000 (08:19 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 10 Aug 2015 06:19:40 +0000 (08:19 +0200)
src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php [new file with mode: 0644]

diff --git a/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php
new file mode 100644 (file)
index 0000000..c1668fa
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Wallabag\CoreBundle\Tests\Controller;
+
+use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
+use Doctrine\ORM\AbstractQuery;
+
+class StaticControllerTest extends WallabagCoreTestCase
+{
+    public function testAbout()
+    {
+        $this->logInAs('admin');
+        $client = $this->getClient();
+
+        $client->request('GET', '/about');
+
+        $this->assertEquals(200, $client->getResponse()->getStatusCode());
+    }
+
+    public function testHowto()
+    {
+        $this->logInAs('admin');
+        $client = $this->getClient();
+
+        $client->request('GET', '/howto');
+
+        $this->assertEquals(200, $client->getResponse()->getStatusCode());
+    }
+}