Drop dependency on http://www.example.com
parent
e3ae45fa12
commit
8501bb71e2
|
@ -136,14 +136,14 @@ class RemoteFilesystemTest extends \PHPUnit_Framework_TestCase
|
||||||
$io = $this->getMock('Composer\IO\IOInterface');
|
$io = $this->getMock('Composer\IO\IOInterface');
|
||||||
$io->expects($this->once())
|
$io->expects($this->once())
|
||||||
->method('setAuthentication')
|
->method('setAuthentication')
|
||||||
->with($this->equalTo('example.com'), $this->equalTo('user'), $this->equalTo('pass'));
|
->with($this->equalTo('github.com'), $this->equalTo('user'), $this->equalTo('pass'));
|
||||||
|
|
||||||
$fs = new RemoteFilesystem($io);
|
$fs = new RemoteFilesystem($io);
|
||||||
try {
|
try {
|
||||||
$fs->getContents('example.com', 'http://user:pass@www.example.com/something');
|
$fs->getContents('github.com', 'https://user:pass@github.com/composer/composer/404');
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
$this->assertInstanceOf('Composer\Downloader\TransportException', $e);
|
$this->assertInstanceOf('Composer\Downloader\TransportException', $e);
|
||||||
$this->assertEquals(404, $e->getCode());
|
$this->assertNotEquals(200, $e->getCode());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue