1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/test/EioDriverTest.php
2015-08-08 10:42:41 -04:00

37 lines
792 B
PHP

<?php
namespace Amp\File\Test;
class EioDriverTest extends DriverTest {
protected function setUp() {
if (extension_loaded("eio")) {
\Amp\reactor(\Amp\driver());
\Amp\File\filesystem(new \Amp\File\EioDriver);
} else {
$this->markTestSkipped(
"eio extension not loaded"
);
}
}
public function testLstat() {
$this->markTestSkipped();
}
public function testDirStat() {
$this->markTestSkipped();
}
public function testNonexistentPathStatResolvesToNull() {
$this->markTestSkipped();
}
public function testExists() {
$this->markTestSkipped();
}
public function testSize() {
$this->markTestSkipped();
}
}