17 lines
378 B
PHP
17 lines
378 B
PHP
<?php
|
|
namespace GuzzleHttp\Tests\Psr7;
|
|
|
|
use GuzzleHttp\Psr7;
|
|
use GuzzleHttp\Psr7\InflateStream;
|
|
|
|
class InflateStreamtest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testInflatesStreams()
|
|
{
|
|
$content = gzencode('test');
|
|
$a = Psr7\stream_for($content);
|
|
$b = new InflateStream($a);
|
|
$this->assertEquals('test', (string) $b);
|
|
}
|
|
}
|