1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Fix create project test

This commit is contained in:
Jordi Boggiano 2012-11-10 19:42:29 +01:00
parent 5480f7ba26
commit 6d38709fe8
3 changed files with 57 additions and 1 deletions

View file

@ -11,6 +11,18 @@ use Symfony\Component\Finder\Finder;
*/
class AllFunctionalTest extends \PHPUnit_Framework_TestCase
{
protected $oldcwd;
public function setUp()
{
$this->oldcwd = getcwd();
chdir(__DIR__.'/Fixtures/functional');
}
public function tearDown()
{
chdir($this->oldcwd);
}
/**
* @dataProvider getTestFiles
*/