mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
HgDriver does not identify bitbucket mercurial repos correctly
This commit is contained in:
parent
902a5c32db
commit
44634a689d
2 changed files with 64 additions and 1 deletions
63
tests/Composer/Test/Repository/Vcs/HgDriverTest.php
Normal file
63
tests/Composer/Test/Repository/Vcs/HgDriverTest.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer\Test\Repository\Vcs;
|
||||
|
||||
use Composer\Repository\Vcs\HgDriver;
|
||||
use Composer\TestCase;
|
||||
use Composer\Util\Filesystem;
|
||||
use Composer\Config;
|
||||
|
||||
class HgDriverTest extends TestCase
|
||||
{
|
||||
|
||||
/** @type \Composer\IO\IOInterface|\PHPUnit_Framework_MockObject_MockObject */
|
||||
private $io;
|
||||
/** @type \Composer\Config */
|
||||
private $config;
|
||||
/** @type string */
|
||||
private $home;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->io = $this->getMock('Composer\IO\IOInterface');
|
||||
$this->home = $this->getUniqueTmpDirectory();
|
||||
$this->config = new Config();
|
||||
$this->config->merge(array(
|
||||
'config' => array(
|
||||
'home' => $this->home,
|
||||
),
|
||||
));
|
||||
}
|
||||
|
||||
public function tearDown()
|
||||
{
|
||||
$fs = new Filesystem;
|
||||
$fs->removeDirectory($this->home);
|
||||
}
|
||||
|
||||
public function testSupports()
|
||||
{
|
||||
$this->assertTrue(
|
||||
HgDriver::supports($this->io, $this->config, 'ssh://bitbucket.org/user/repo')
|
||||
);
|
||||
|
||||
$this->assertTrue(
|
||||
HgDriver::supports($this->io, $this->config, 'ssh://hg@bitbucket.org/user/repo')
|
||||
);
|
||||
|
||||
$this->assertTrue(
|
||||
HgDriver::supports($this->io, $this->config, 'ssh://user@bitbucket.org/user/repo')
|
||||
);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue