mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
11 lines
217 B
PHP
11 lines
217 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
class BlockingDriverTest extends DriverTest {
|
|
protected function setUp() {
|
|
\Amp\reactor(\Amp\driver());
|
|
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
|
|
}
|
|
}
|