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:
parent
5480f7ba26
commit
6d38709fe8
3 changed files with 57 additions and 1 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue