mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +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'
|
|
);
|
|
}
|
|
}
|
|
}
|