1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 10:28:01 +01:00
amp/test/LibeventReactorTest.php
2014-06-11 12:24:46 -04:00

16 lines
329 B
PHP
Executable File

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