summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index 9a762bd9..ce79402a 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -115,7 +115,7 @@ class TestRepo(TestBase):
# we can add a file to the index ( if we are not bare )
if not repo.bare:
- pass
+ pass
# END test repos with working tree
@@ -327,3 +327,8 @@ class TestRepo(TestBase):
remote = self.rorepo.create_remote("new_remote", "git@server:repo.git")
self.rorepo.delete_remote(remote)
+
+ def test_comparison_and_hash(self):
+ # this is only a preliminary test, more testing done in test_index
+ assert self.rorepo == self.rorepo and not (self.rorepo != self.rorepo)
+ assert len(set((self.rorepo, self.rorepo))) == 1