mirror of
https://github.com/danog/amp.git
synced 2024-12-03 09:57:51 +01:00
18 lines
358 B
PHP
18 lines
358 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(
|
|
"libevent extension not loaded"
|
|
);
|
|
}
|
|
}
|
|
}
|