blob: d6a4d26ff5ce8eee4f4f1b49d69ecf795f244c78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
use PHPGit\Git;
use Symfony\Component\Filesystem\Filesystem;
require_once __DIR__ . '/../BaseTestCase.php';
class CloneCommandTest extends BaseTestCase
{
public function testClone()
{
$git = new Git();
$git->clone('https://github.com/kzykhys/Text.git', $this->directory);
$git->setRepository($this->directory);
$this->assertFileExists($this->directory . '/.git');
$filesystem = new Filesystem();
$filesystem->remove($this->directory);
$git->setRepository('.');
$git->clone('https://github.com/kzykhys/Text.git', $this->directory, array('shared' => true));
$this->assertFileExists($this->directory . '/.git');
}
}
|