summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 14:37:49 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 14:37:49 +0100
commit7837e71f70749f400fc075e9b27b2c92d5928ea9 (patch)
tree195a2f6da60aea10cb08682f03c7dabd913450a8 /tests
parent53248304dd317e7af3fbc6de09c47f4fb2427530 (diff)
added index template
Diffstat (limited to 'tests')
-rw-r--r--tests/controller/PageControllerTest.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/controller/PageControllerTest.php b/tests/controller/PageControllerTest.php
index 5b72257ae..98c4cb3cc 100644
--- a/tests/controller/PageControllerTest.php
+++ b/tests/controller/PageControllerTest.php
@@ -26,7 +26,7 @@
namespace OCA\News\Controller;
use \OCA\AppFramework\Http\Request;
-use \OCA\AppFramework\Http\JSONResponse;
+use \OCA\AppFramework\Http\TemplateResponse;
use \OCA\AppFramework\Utility\ControllerTestUtility;
use \OCA\AppFramework\Db\DoesNotExistException;
use \OCA\AppFramework\Db\MultipleObjectsReturnedException;
@@ -58,5 +58,11 @@ class PageControllerTest extends ControllerTestUtility {
$this->assertAnnotations($this->controller, 'index', $annotations);
}
+ public function testIndex(){
+ $response = $this->controller->index();
+ $this->assertEquals('main', $response->getTemplateName());
+ $this->assertTrue($response instanceof TemplateResponse);
+ }
+
} \ No newline at end of file