diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-26 10:51:07 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-26 10:51:07 -0400 |
commit | 27ceafbb3f74b4677d5bae6c7ea031de07c6cfad (patch) | |
tree | 1a5cf74ebc29d6b3ddc6c686133a56389cad88d2 /test/git/test_utils.py | |
parent | 7c60b88138b836307bdde0487c4ffb82121b1c5e (diff) | |
parent | 70094734d601e1220c95ac586fdffbda3a23e10b (diff) | |
download | gitpython-27ceafbb3f74b4677d5bae6c7ea031de07c6cfad.tar.gz |
Merge git://gitorious.org/git-python/apollo13
Diffstat (limited to 'test/git/test_utils.py')
-rw-r--r-- | test/git/test_utils.py | 6 |
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')) |