1
0
mirror of https://github.com/danog/amp.git synced 2025-01-08 14:08:15 +01:00
amp/test/LibeventReactorTest.php

18 lines
358 B
PHP
Raw Normal View History

2013-08-05 22:05:08 +02:00
<?php
2014-09-23 04:38:32 +02:00
namespace Amp\Test;
2014-09-23 04:38:32 +02:00
use Amp\LibeventReactor;
2013-08-05 22:05:08 +02:00
class LibeventReactorTest extends ReactorTest {
protected function getReactor() {
if (extension_loaded('libevent')) {
return new LibeventReactor;
} else {
2013-08-05 22:05:08 +02:00
$this->markTestSkipped(
2014-06-11 18:21:46 +02:00
'libevent extension not loaded'
2013-08-05 22:05:08 +02:00
);
}
}
}