You are here

public function ResponseTest::testNewInstanceWhenRemovingHeader in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/guzzlehttp/psr7/tests/ResponseTest.php \GuzzleHttp\Tests\Psr7\ResponseTest::testNewInstanceWhenRemovingHeader()

File

vendor/guzzlehttp/psr7/tests/ResponseTest.php, line 107

Class

ResponseTest
@covers GuzzleHttp\Psr7\MessageTrait @covers GuzzleHttp\Psr7\Response

Namespace

GuzzleHttp\Tests\Psr7

Code

public function testNewInstanceWhenRemovingHeader() {
  $r = new Response(200, [
    'Foo' => 'Bar',
  ]);
  $r2 = $r
    ->withoutHeader('Foo');
  $this
    ->assertNotSame($r, $r2);
  $this
    ->assertFalse($r2
    ->hasHeader('foo'));
}