summaryrefslogtreecommitdiff
path: root/test/git/test_utils.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-05-21 19:39:55 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-05-21 19:39:55 +0200
commit71cd409660bc5b8c211dc7c51afae481d822d593 (patch)
treef600d5ed40ad4ddf0c5126fe3cf4cd498ea394d9 /test/git/test_utils.py
parent30472cf3132b8c03e528b23d1c7533de740e28ab (diff)
downloadgitpython-71cd409660bc5b8c211dc7c51afae481d822d593.tar.gz
fixed errors in the test, two permission errors remaining, thx to mock?!?!
Also removed the shell_escape tests...
Diffstat (limited to 'test/git/test_utils.py')
-rw-r--r--test/git/test_utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/git/test_utils.py b/test/git/test_utils.py
index a9af2040..b2b42a1c 100644
--- a/test/git/test_utils.py
+++ b/test/git/test_utils.py
@@ -6,10 +6,10 @@ class TestUtils(object):
def setup(self):
base = os.path.join(os.path.dirname(__file__), "../.."),
self.git = Git(base)
- self.git_bin_base = "%s --git-dir='%s'" % (Git.git_binary, base)
+# self.git_bin_base = "%s --git-dir='%s'" % (Git.git_binary, base)
- def test_it_escapes_single_quotes_with_shell_escape(self):
- assert_equal("\\\\'foo", shell_escape("'foo"))
+# def test_it_escapes_single_quotes_with_shell_escape(self):
+# assert_equal("\\\\'foo", shell_escape("'foo"))
def test_it_should_dashify(self):
assert_equal('this-is-my-argument', dashify('this_is_my_argument'))