1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 21:31:15 +01:00
file/test/BlockingDriverTest.php

15 lines
220 B
PHP
Raw Normal View History

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