1
0
mirror of https://github.com/danog/file.git synced 2024-11-27 04:14:50 +01:00
file/test/BlockingHandleTest.php

13 lines
319 B
PHP
Raw Normal View History

<?php
2015-08-13 01:02:41 +02:00
namespace Amp\File\Test;
class BlockingHandleTest extends HandleTest {
2016-07-21 01:33:03 +02:00
protected function lRun(callable $cb) {
2017-01-11 14:22:06 +01:00
\AsyncInterop\Loop::execute(function() use ($cb) {
2016-07-21 01:33:03 +02:00
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
\Amp\rethrow(new \Amp\Coroutine($cb()));
});
2015-08-13 01:02:41 +02:00
}
}