From b9de58c0c9da63f6a489df416df1819a40cb507d Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 13 May 2014 22:10:02 +0200 Subject: remove more old code --- tests/unit/http/DownloadResponseTest.php | 41 -------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 tests/unit/http/DownloadResponseTest.php (limited to 'tests/unit') 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 @@ - - * @author Bernhard Posselt - * @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 -- cgit v1.2.3