summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Http/TextDownloadResponseTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/TextDownloadResponseTest.php')
-rw-r--r--tests/Unit/Http/TextDownloadResponseTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/Unit/Http/TextDownloadResponseTest.php b/tests/Unit/Http/TextDownloadResponseTest.php
new file mode 100644
index 000000000..73622291a
--- /dev/null
+++ b/tests/Unit/Http/TextDownloadResponseTest.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+
+namespace OCA\News\Http;
+
+
+class TextDownloadResponseTest extends \PHPUnit_Framework_TestCase {
+
+
+ protected function setUp() {
+ $this->response = new TextDownloadResponse(
+ 'sometext', 'file', 'content'
+ );
+ }
+
+
+ public function testRender() {
+ $this->assertEquals('sometext', $this->response->render());
+ }
+
+} \ No newline at end of file