blob: dd5f46c5561101adb66e5807caf4074f25934b0e (
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
|
<?php
use PHPGit\Git;
use Symfony\Component\Filesystem\Filesystem;
require_once __DIR__ . '/../BaseTestCase.php';
class MvCommandTest extends BaseTestCase
{
public function testMv()
{
$filesystem = new Filesystem();
$git = new Git();
$git->init($this->directory);
$git->setRepository($this->directory);
$filesystem->dumpFile($this->directory . '/test.txt', 'foo');
$git->add('test.txt');
$git->commit('Initial commit');
$git->mv('test.txt', 'test2.txt');
$this->assertFileExists($this->directory . '/test2.txt');
}
}
|