mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
18 lines
345 B
PHP
18 lines
345 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp\UvReactor;
|
|
|
|
class UvReactorTest extends ReactorTest {
|
|
protected function getReactor() {
|
|
if (extension_loaded('uv')) {
|
|
return new UvReactor($new = TRUE);
|
|
} else {
|
|
$this->markTestSkipped(
|
|
'php-uv extension not loaded'
|
|
);
|
|
}
|
|
}
|
|
}
|