1
0
Fork 0
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:
Jordi Boggiano 2012-05-13 21:40:42 +02:00
parent 0a0a6b1813
commit 4505df29df
9 changed files with 327 additions and 11 deletions

View file

@ -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()
{
}
}