diff options
Diffstat (limited to 'assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php')
-rw-r--r-- | assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php b/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php new file mode 100644 index 0000000..65e82be --- /dev/null +++ b/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php @@ -0,0 +1,17 @@ +<?php + +namespace React\Tests\EventLoop\Timer; + +use React\EventLoop\ExtLibevLoop; + +class ExtLibevTimerTest extends AbstractTimerTest +{ + public function createLoop() + { + if (!class_exists('libev\EventLoop')) { + $this->markTestSkipped('libev tests skipped because ext-libev is not installed.'); + } + + return new ExtLibevLoop(); + } +} |