GuzzleHttp\Tests\Psr7\InflateStreamtest::testInflatesStreams PHP Method

testInflatesStreams() public method

public testInflatesStreams ( )
    public function testInflatesStreams()
    {
        $content = gzencode('test');
        $a = Psr7\stream_for($content);
        $b = new InflateStream($a);
        $this->assertEquals('test', (string) $b);
    }