1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/test/BlockingHandleTest.php
2016-08-24 00:01:41 -05:00

16 lines
386 B
PHP

<?php declare(strict_types = 1);
namespace Amp\File\Test;
use Amp as amp;
use Amp\File as file;
class BlockingHandleTest extends HandleTest {
protected function lRun(callable $cb) {
\Interop\Async\Loop::execute(function() use ($cb) {
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
\Amp\rethrow(new \Amp\Coroutine($cb()));
});
}
}