Explorar el Código

Fix tests depending on remote sites

Jordi Boggiano hace 13 años
padre
commit
ac8ac6e9b2
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      tests/Composer/Test/Util/RemoteFilesystemTest.php

+ 3 - 3
tests/Composer/Test/Util/RemoteFilesystemTest.php

@@ -121,7 +121,7 @@ class RemoteFilesystemTest extends \PHPUnit_Framework_TestCase
     {
         $fs = new RemoteFilesystem($this->getMock('Composer\IO\IOInterface'));
 
-        $this->assertContains('RFC 2606', $fs->getContents('http://example.org', 'http://example.org'));
+        $this->assertContains('testGetContents', $fs->getContents('http://example.org', 'file://'.__FILE__));
     }
 
     public function testCopy()
@@ -129,9 +129,9 @@ class RemoteFilesystemTest extends \PHPUnit_Framework_TestCase
         $fs = new RemoteFilesystem($this->getMock('Composer\IO\IOInterface'));
 
         $file = tempnam(sys_get_temp_dir(), 'c');
-        $this->assertTrue($fs->copy('http://example.org', 'http://example.org', $file));
+        $this->assertTrue($fs->copy('http://example.org', 'file://'.__FILE__, $file));
         $this->assertFileExists($file);
-        $this->assertContains('RFC 2606', file_get_contents($file));
+        $this->assertContains('testCopy', file_get_contents($file));
         unlink($file);
     }