@@ -39,7 +39,7 @@ abstract class AbstractTest extends TestCase
39
39
*
40
40
* @return Repository
41
41
*/
42
- public static function createEmptyRepository ($ bare = true )
42
+ public static function createEmptyRepository ($ bare = true , $ separateGitDir = false )
43
43
{
44
44
$ dir = self ::createTempDir ();
45
45
$ repository = Admin::init ($ dir , $ bare , self ::getOptions ());
@@ -56,6 +56,7 @@ public static function provideFoobar()
56
56
return [
57
57
[self ::createFoobarRepository ()],
58
58
[self ::createFoobarRepository (false )],
59
+ [self ::createFoobarRepository (false , true )]
59
60
];
60
61
}
61
62
@@ -75,10 +76,12 @@ public static function provideEmpty()
75
76
*
76
77
* @return Repository
77
78
*/
78
- public static function createFoobarRepository ($ bare = true )
79
+ public static function createFoobarRepository ($ bare = true , $ separateGitDirectory = false )
79
80
{
81
+ $ args = $ separateGitDirectory ? ['--separate-git-dir= ' . tempnam (sys_get_temp_dir (), 'gitlib_ ' )] : [];
82
+
80
83
if (null === self ::$ localRepository ) {
81
- self ::$ localRepository = Admin::cloneTo (self ::createTempDir (), self ::REPOSITORY_URL , $ bare , self ::getOptions ());
84
+ self ::$ localRepository = Admin::cloneTo (self ::createTempDir (), self ::REPOSITORY_URL , $ bare , self ::getOptions (), $ args );
82
85
}
83
86
84
87
$ repository = self ::$ localRepository ->cloneTo (self ::createTempDir (), $ bare , self ::getOptions ());
0 commit comments