1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/test/BlockingHandleTest.php
2016-07-21 01:39:27 +02:00

16 lines
359 B
PHP

<?php
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()));
});
}
}