1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 17:28:24 +01:00
file/test/BlockingDriverTest.php

15 lines
220 B
PHP
Raw Normal View History

<?php
2015-07-30 16:10:53 +02:00
2015-08-05 16:55:56 +02:00
namespace Amp\File\Test;
2015-07-30 16:10:53 +02:00
2017-06-20 19:37:41 +02:00
use Amp\File;
class BlockingDriverTest extends DriverTest
{
2019-08-23 20:59:26 +02:00
protected function setUp(): void
{
2019-08-23 20:59:26 +02:00
parent::setUp();
File\filesystem(new File\BlockingDriver);
2015-07-30 16:10:53 +02:00
}
}