1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-30 04:19:23 +01:00

Simplify OutputBuffer tests

This commit is contained in:
Sébastien Nikolaou 2017-10-17 22:18:25 +03:00 committed by Niklas Keller
parent 48bb2ebf78
commit e00c6d4926

View File

@ -3,7 +3,6 @@
namespace Amp\ByteStream\Test;
use Amp\ByteStream\ClosedException;
use Amp\ByteStream\InMemoryStream;
use Amp\ByteStream\OutputBuffer;
use Amp\Loop;
use Amp\PHPUnit\TestCase;
@ -15,9 +14,7 @@ class OutputBufferTest extends TestCase {
$output->write('foo');
$output->end();
$memory = new InMemoryStream(yield $output);
$this->assertSame('foo', yield $memory->read());
$this->assertSame('foo', yield $output);
});
}
@ -27,9 +24,7 @@ class OutputBufferTest extends TestCase {
$output->write('foo');
$output->end('bar');
$memory = new InMemoryStream(yield $output);
$this->assertSame('foobar', yield $memory->read());
$this->assertSame('foobar', yield $output);
});
}