We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d5e7c commit 7d49273Copy full SHA for 7d49273
test/git/test_git.py
@@ -44,3 +44,8 @@ def test_it_raises_errors(self):
44
except errors.GitCommandError, e:
45
error_raised = True
46
assert_equal( True, error_raised )
47
+
48
+ def test_it_returns_stderr_in_output(self):
49
+ # Note: no trailiing newline
50
+ assert_equal( "git: 'this-does-not-exist' is not a git-command. See 'git --help'.",
51
+ self.git.this_does_not_exist(with_stderr=True) )
0 commit comments