1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Daniel Beyer <dabe@deb.ymc.ch>
Date: Fri, 19 Sep 2014 11:00:10 +0200
Subject: '@group online' for test failing without network
Forwarded: not-needed
>From https://wiki.debian.org/buildd:
"(...) most buildds will have no network access available. (...)"
---
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
index 58badcc..b807d95 100644
--- a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
+++ b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
@@ -156,6 +156,9 @@ class FilesystemTest extends FilesystemTestCase
$this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath));
}
+ /**
+ * @group online
+ */
public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy()
{
$sourceFilePath = 'http://symfony.com/images/common/logo/logo_symfony_header.png';
|