mirror of
https://github.com/danog/file.git
synced 2024-11-30 04:19:39 +01:00
13 lines
317 B
PHP
13 lines
317 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()));
|
|
});
|
|
}
|
|
}
|