mirror of
https://github.com/danog/file.git
synced 2024-12-02 17:28:24 +01:00
15 lines
220 B
PHP
15 lines
220 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\File;
|
|
|
|
class BlockingDriverTest extends DriverTest
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
File\filesystem(new File\BlockingDriver);
|
|
}
|
|
}
|