mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
22 lines
357 B
PHP
22 lines
357 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\File;
|
|
|
|
class EioDriverTest extends DriverTest
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
if (!\extension_loaded("eio")) {
|
|
$this->markTestSkipped(
|
|
"eio extension not loaded"
|
|
);
|
|
}
|
|
|
|
File\filesystem(new File\EioDriver);
|
|
}
|
|
}
|