summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-19 18:06:19 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-19 18:06:19 +0200
commita07cdbae1d485fd715a5b6eca767f211770fea4d (patch)
treef0ed80c46d74a2904cde87a290f3e9a6be9c3efe /test/git/test_repo.py
parenta8f8582274cd6a368a79e569e2995cee7d6ea9f9 (diff)
downloadgitpython-a07cdbae1d485fd715a5b6eca767f211770fea4d.tar.gz
Added remote module and test cases - about to implement remote option handling
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index b30f6889..0d8a473d 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -34,11 +34,6 @@ class TestRepo(TestCase):
for head in self.repo.heads:
assert_equal(Head, head.__class__)
- def test_renites_should_return_array_of_remote_objects(self):
- for remote in self.repo.remotes:
- assert_equal(Remote, remote.__class__)
-
-
def test_heads_should_populate_head_data(self):
for head in self.repo.heads:
assert head.name