1
0
mirror of https://github.com/danog/file.git synced 2025-01-23 05:41:18 +01:00
file/test/BlockingDriverTest.php

13 lines
314 B
PHP
Raw Normal View History

<?php
2015-07-30 10:10:53 -04:00
2015-08-05 10:55:56 -04:00
namespace Amp\File\Test;
2015-07-30 10:10:53 -04:00
class BlockingDriverTest extends DriverTest {
2016-07-21 01:33:03 +02:00
protected function lRun(callable $cb) {
\Amp\Loop::run(function() use ($cb) {
2016-07-21 01:33:03 +02:00
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
\Amp\Promise\rethrow(new \Amp\Coroutine($cb()));
2016-07-21 01:33:03 +02:00
});
2015-07-30 10:10:53 -04:00
}
}