blob: 1fad08417c880563d4482157405c31c9950504b4 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
use PHPGit\Git;
use Symfony\Component\Filesystem\Filesystem;
require_once __DIR__ . '/../BaseTestCase.php';
/**
* @author Kazuyuki Hayashi <hayashi@valnur.net>
*/
class AddCommandTest extends BaseTestCase
{
public function testAdd()
{
$filesystem = new Filesystem();
$filesystem->mkdir($this->directory);
$git = new Git();
$git->init($this->directory);
$git->setRepository($this->directory);
$filesystem->dumpFile($this->directory . '/test.txt', 'foo');
$filesystem->dumpFile($this->directory . '/test.md', '**foo**');
$this->assertTrue($git->add('test.txt'));
$this->assertTrue($git->add(array('test.md'), array('force' => true)));
}
/**
* @expectedException \PHPGit\Exception\GitException
* @expectedExceptionCode 128
*/
public function testException()
{
$git = new Git();
$git->init($this->directory);
$git->setRepository($this->directory);
$git->add('foo');
}
}
|