1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/LibeventReactorTest.php
2015-05-04 12:58:11 -04:00

18 lines
356 B
PHP

<?php
namespace Amp\Test;
use Amp\LibeventReactor;
class LibeventReactorTest extends ReactorTest {
protected function getReactor() {
if (extension_loaded('libevent')) {
return new LibeventReactor;
} else {
$this->markTestSkipped(
'php-uv extension not loaded'
);
}
}
}