1
0
mirror of https://github.com/danog/amp.git synced 2025-01-05 20:48:21 +01:00
amp/test/LibeventReactorTest.php

18 lines
358 B
PHP
Raw Normal View History

2015-04-30 19:41:14 +02:00
<?php
namespace Amp\Test;
use Amp\LibeventReactor;
class LibeventReactorTest extends ReactorTest {
protected function getReactor() {
2015-07-21 04:24:51 +02:00
if (extension_loaded("libevent")) {
return new LibeventReactor;
} else {
$this->markTestSkipped(
2015-07-21 04:24:51 +02:00
"libevent extension not loaded"
);
}
2015-04-30 19:41:14 +02:00
}
}