lithium\tests\cases\action\ResponseTest::testDownloadMagicHeader PHP Метод

testDownloadMagicHeader() публичный Метод

Tests custom header add-ons, like 'download'.
    public function testDownloadMagicHeader()
    {
        $response = $this->response;
        $this->assertException('/deprecated/', function () use($response) {
            $response->headers('download', 'report.csv');
        });
    }