aboutsummaryrefslogtreecommitdiffstats
path: root/library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php')
-rw-r--r--library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php b/library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php
deleted file mode 100644
index 154d6b906..000000000
--- a/library/kzykhys/git/test/PHPGit/Exception/GitExceptionTest.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-use PHPGit\Exception\GitException;
-use PHPGit\Git;
-
-class GitExceptionTest extends PHPUnit_Framework_TestCase
-{
-
- public function testException()
- {
- $git = new Git();
- $git->setRepository(sys_get_temp_dir());
- try {
- $git->status();
- $this->fail('Previous operation should fail');
- } catch (GitException $e) {
- $command = $e->getCommandLine();
- $command = str_replace(array('"', "'"), '', $command);
- $this->assertStringEndsWith('status --porcelain -s -b --null', $command);
- }
- }
-
-} \ No newline at end of file