diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-02-21 10:12:11 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-02-21 10:14:59 +0100 |
commit | e0acb8371bb2b68c2bda04db7cb2746ba3f9da86 (patch) | |
tree | dad907401197e27fee983e420cc780f48cd6a463 /git/test/test_remote.py | |
parent | bfcdf2bef08f17b4726b67f06c84be3bfe2c39b8 (diff) | |
download | gitpython-e0acb8371bb2b68c2bda04db7cb2746ba3f9da86.tar.gz |
Added 'insert_kwargs_after' flag for consumption by _call_process.
While at it, all other invocations of .git in remote.py were reviewed
Fixes #262
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r-- | git/test/test_remote.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 2540e49b..8500a295 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -486,6 +486,9 @@ class TestRemote(TestBase): # END if deleted remote matches existing remote's name # END for each remote + # Issue #262 - the next call would fail if bug wasn't fixed + bare_rw_repo.create_remote('bogus', '/bogus/path', mirror='push') + def test_fetch_info(self): # assure we can handle remote-tracking branches fetch_info_line_fmt = "c437ee5deb8d00cf02f03720693e4c802e99f390 not-for-merge %s '0.3' of " |