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

22 lines
357 B
PHP
Raw Normal View History

<?php
2015-07-18 12:08:50 -04:00
2015-08-05 10:55:56 -04:00
namespace Amp\File\Test;
2015-07-18 12:08:50 -04:00
2017-06-20 19:37:41 +02:00
use Amp\File;
class EioDriverTest extends DriverTest
{
2019-08-23 13:59:26 -05:00
protected function setUp(): void
{
2019-08-23 13:59:26 -05:00
parent::setUp();
2017-06-20 19:37:41 +02:00
if (!\extension_loaded("eio")) {
2015-07-18 12:08:50 -04:00
$this->markTestSkipped(
"eio extension not loaded"
2015-07-18 12:08:50 -04:00
);
}
2017-06-20 19:37:41 +02:00
2019-08-23 13:59:26 -05:00
File\filesystem(new File\EioDriver);
2015-07-18 12:08:50 -04:00
}
}