mirror of
https://github.com/danog/file.git
synced 2024-12-03 09:47:54 +01:00
28bdce091e
Handle interface still provided for backward compatibility.
15 lines
216 B
PHP
15 lines
216 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\File;
|
|
|
|
class BlockingFileTest extends FileTest
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
File\filesystem(new File\BlockingDriver);
|
|
}
|
|
}
|