1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/test/BlockingDriverTest.php

11 lines
217 B
PHP
Raw Normal View History

2015-07-30 16:10:53 +02:00
<?php
2015-08-05 16:55:56 +02:00
namespace Amp\File\Test;
2015-07-30 16:10:53 +02:00
class BlockingDriverTest extends DriverTest {
protected function setUp() {
2015-08-01 03:09:58 +02:00
\Amp\reactor(\Amp\driver());
2015-08-05 16:55:56 +02:00
\Amp\File\filesystem(new \Amp\File\BlockingDriver);
2015-07-30 16:10:53 +02:00
}
}