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

17 lines
327 B
PHP
Raw Normal View History

<?php
2015-08-13 01:02:41 +02:00
namespace Amp\File\Test;
2017-06-20 19:37:41 +02:00
use Amp\File;
use Amp\Loop;
use function Amp\asyncCall;
2015-08-13 01:02:41 +02:00
class BlockingHandleTest extends HandleTest {
protected function execute(callable $cb) {
2017-06-20 19:37:41 +02:00
Loop::run(function () use ($cb) {
File\filesystem(new File\BlockingDriver);
asyncCall($cb);
2016-07-21 01:33:03 +02:00
});
2015-08-13 01:02:41 +02:00
}
}