1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/test/BlockingHandleTest.php
2017-06-17 23:41:57 +02:00

13 lines
318 B
PHP

<?php
namespace Amp\File\Test;
class BlockingHandleTest extends HandleTest {
protected function execute(callable $cb) {
\Amp\Loop::run(function () use ($cb) {
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
\Amp\Promise\rethrow(new \Amp\Coroutine($cb()));
});
}
}