summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 22:10:02 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 22:10:02 +0200
commitb9de58c0c9da63f6a489df416df1819a40cb507d (patch)
tree838ca16395b6c681e22e970897dd9a71b950e955 /tests
parent066b4b5a22a89fe3b38d37f09153090091928cd5 (diff)
remove more old code
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/http/DownloadResponseTest.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/unit/http/DownloadResponseTest.php b/tests/unit/http/DownloadResponseTest.php
deleted file mode 100644
index 82884ab85..000000000
--- a/tests/unit/http/DownloadResponseTest.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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;
-
-
-require_once(__DIR__ . "/../../classloader.php");
-
-
-class ChildDownloadResponse extends DownloadResponse {};
-
-
-class DownloadResponseTest extends \PHPUnit_Framework_TestCase {
-
- protected $response;
-
- protected function setUp(){
- $this->response = new ChildDownloadResponse('file', 'content');
- }
-
-
- public function testHeaders() {
- $headers = $this->response->getHeaders();
-
- $this->assertContains('attachment; filename="file"', $headers['Content-Disposition']);
- $this->assertContains('content', $headers['Content-Type']);
- }
-
-
-} \ No newline at end of file