1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/test/BlockingDriverTest.php
2017-01-11 14:22:06 +01:00

13 lines
319 B
PHP

<?php
namespace Amp\File\Test;
class BlockingDriverTest extends DriverTest {
protected function lRun(callable $cb) {
\AsyncInterop\Loop::execute(function() use ($cb) {
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
\Amp\rethrow(new \Amp\Coroutine($cb()));
});
}
}