mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Add functional tests for the installer, fixes #580
This commit is contained in:
parent
0a0a6b1813
commit
4505df29df
9 changed files with 327 additions and 11 deletions
|
@ -0,0 +1,25 @@
|
|||
<?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\Mock;
|
||||
|
||||
use Composer\Repository\InstalledFilesystemRepository;
|
||||
|
||||
class InstalledFilesystemRepositoryMock extends InstalledFilesystemRepository
|
||||
{
|
||||
public function reload()
|
||||
{
|
||||
}
|
||||
|
||||
public function write()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue