aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php')
-rwxr-xr-xassets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php17
1 files changed, 0 insertions, 17 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
deleted file mode 100755
index 65e82be..0000000
--- a/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?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();
- }
-}