Skip to content

Commit e676a76

Browse files
committed
updated test
1 parent 4fae184 commit e676a76

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

Tests/Repository/Vcs/GitDriverTest.php

+14-6
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,23 @@ class GitDriverTest extends \PHPUnit_Framework_TestCase
3131

3232
public function setUp()
3333
{
34+
$assetConfig = new \Fxp\Composer\AssetPlugin\Config\Config(array(
35+
'git-skip-update' => true,
36+
));
37+
38+
/* @var AssetRepositoryManager|\PHPUnit_Framework_MockObject_MockObject $arm */
39+
$arm = $this->getMockBuilder(AssetRepositoryManager::class)->disableOriginalConstructor()->getMock();
40+
$arm->expects($this->any())
41+
->method('getConfig')
42+
->willReturn($assetConfig);
43+
3444
$this->config = new Config();
3545
$this->config->merge(array(
3646
'config' => array(
3747
'home' => sys_get_temp_dir().'/composer-test',
3848
'cache-repo-dir' => sys_get_temp_dir().'/composer-test-cache',
49+
'cache-vcs-dir' => sys_get_temp_dir().'/composer-test-cache-vcs',
50+
'asset-repository-manager' => $arm,
3951
),
4052
));
4153
}
@@ -108,14 +120,10 @@ public function testPublicRepositoryWithSkipUpdate($type, $filename)
108120
$identifier = '92bebbfdcde75ef2368317830e54b605bc938123';
109121
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
110122

123+
111124
$this->config->merge([
112125
'config' => [
113-
'fxp-asset' => [
114-
'git-driver' => [
115-
'skip-update' => '1 week',
116-
],
117-
],
118-
'cache-vcs-dir' => sys_get_temp_dir().'/composer-test-cache-vcs',
126+
'git-skip-update' => '1 week',
119127
],
120128
]);
121129

0 commit comments

Comments
 (0)