public function InflateStreamtest::testInflatesStreams in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/InflateStreamTest.php \GuzzleHttp\Tests\Psr7\InflateStreamtest::testInflatesStreams()
File
- vendor/
guzzlehttp/ psr7/ tests/ InflateStreamTest.php, line 9
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testInflatesStreams() {
$content = gzencode('test');
$a = Psr7\stream_for($content);
$b = new InflateStream($a);
$this
->assertEquals('test', (string) $b);
}