We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa13bfd + 599de83 commit 7a4d7b5Copy full SHA for 7a4d7b5
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
@@ -161,6 +161,9 @@ public function testCopyCreatesTargetDirectoryIfItDoesNotExist()
161
*/
162
public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy()
163
{
164
+ if (!in_array('https', stream_get_wrappers())) {
165
+ $this->markTestSkipped('"https" stream wrapper is not enabled.');
166
+ }
167
$sourceFilePath = 'https://symfony.com/images/common/logo/logo_symfony_header.png';
168
$targetFilePath = $this->workspace.\DIRECTORY_SEPARATOR.'copy_target_file';
169
0 commit comments