summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/tests/Client/StreamTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/tests/Client/StreamTest.php')
-rw-r--r--vendor/fguillot/picofeed/tests/Client/StreamTest.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/fguillot/picofeed/tests/Client/StreamTest.php b/vendor/fguillot/picofeed/tests/Client/StreamTest.php
index 314d488c3..9a72789a8 100644
--- a/vendor/fguillot/picofeed/tests/Client/StreamTest.php
+++ b/vendor/fguillot/picofeed/tests/Client/StreamTest.php
@@ -6,6 +6,9 @@ use PHPUnit_Framework_TestCase;
class StreamTest extends PHPUnit_Framework_TestCase
{
+ /**
+ * @group online
+ */
public function testChunkedResponse()
{
$client = new Stream;
@@ -15,6 +18,9 @@ class StreamTest extends PHPUnit_Framework_TestCase
$this->assertEquals('</rss>', substr($result['body'], -6));
}
+ /**
+ * @group online
+ */
public function testDownload()
{
$client = new Stream;
@@ -29,6 +35,7 @@ class StreamTest extends PHPUnit_Framework_TestCase
/**
* @runInSeparateProcess
+ * @group online
*/
public function testPassthrough()
{
@@ -40,6 +47,9 @@ class StreamTest extends PHPUnit_Framework_TestCase
$this->expectOutputString(file_get_contents('tests/fixtures/miniflux_favicon.ico'));
}
+ /**
+ * @group online
+ */
public function testRedirect()
{
$client = new Stream;
@@ -64,6 +74,9 @@ class StreamTest extends PHPUnit_Framework_TestCase
$client->doRequest();
}
+ /**
+ * @group online
+ */
public function testDecodeGzip()
{
if (function_exists('gzdecode')) {