summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/tests/Client/ClientTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-03-31 10:18:08 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-03-31 10:19:06 +0200
commit5a5eda55dcdb636e243bb4afcdac2e1cc6f4787a (patch)
tree22000698d6a452024f276fd163df7a072eae7016 /vendor/fguillot/picofeed/tests/Client/ClientTest.php
parent539b3823ade372cc2d076980e513aec57b4c8b06 (diff)
update picofeed
Diffstat (limited to 'vendor/fguillot/picofeed/tests/Client/ClientTest.php')
-rw-r--r--vendor/fguillot/picofeed/tests/Client/ClientTest.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/fguillot/picofeed/tests/Client/ClientTest.php b/vendor/fguillot/picofeed/tests/Client/ClientTest.php
index 79592811b..b50837230 100644
--- a/vendor/fguillot/picofeed/tests/Client/ClientTest.php
+++ b/vendor/fguillot/picofeed/tests/Client/ClientTest.php
@@ -6,6 +6,9 @@ use PHPUnit_Framework_TestCase;
class ClientTest extends PHPUnit_Framework_TestCase
{
+ /**
+ * @group online
+ */
public function testDownload()
{
$client = Client::getInstance();
@@ -20,6 +23,7 @@ class ClientTest extends PHPUnit_Framework_TestCase
/**
* @runInSeparateProcess
+ * @group online
*/
public function testPassthrough()
{
@@ -31,6 +35,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->expectOutputString(file_get_contents('tests/fixtures/miniflux_favicon.ico'));
}
+ /**
+ * @group online
+ */
public function testCacheBothHaveToMatch()
{
$client = Client::getInstance();
@@ -46,6 +53,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertTrue($client->isModified());
}
+ /**
+ * @group online
+ */
public function testCacheEtag()
{
$client = Client::getInstance();
@@ -63,6 +73,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertFalse($client->isModified());
}
+ /**
+ * @group online
+ */
public function testCacheLastModified()
{
$client = Client::getInstance();
@@ -78,6 +91,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertFalse($client->isModified());
}
+ /**
+ * @group online
+ */
public function testCacheBoth()
{
$client = Client::getInstance();
@@ -95,6 +111,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertFalse($client->isModified());
}
+ /**
+ * @group online
+ */
public function testCharset()
{
$client = Client::getInstance();
@@ -108,6 +127,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertEquals('', $client->getEncoding());
}
+ /**
+ * @group online
+ */
public function testContentType()
{
$client = Client::getInstance();