1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/test/Stream/DiscardTest.php

21 lines
429 B
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
<?php
namespace Amp\Test\Stream;
use Amp\PHPUnit\AsyncTestCase;
use Amp\Stream;
use function Amp\Stream\discard;
class DiscardTest extends AsyncTestCase
{
public function testEmpty(): \Generator
{
$this->assertSame(0, yield discard(Stream\fromIterable([])));
}
public function testCount(): \Generator
{
$this->assertSame(3, yield discard(Stream\fromIterable(['a', 1, false], 1)));
}
}