From 600fcbc1a2d723f8d51e5f5ab6d9e4c389010e1c Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 11 May 2010 11:01:45 +0200 Subject: Repo: Added comparison operators and hash operator including test Cmd: AutoInterrupt handles boundary cases more gracefully as it can be that the os module suddenly becomes None if the interpreter is going down --- test/git/test_repo.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'test/git/test_repo.py') 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 -- cgit v1.2.1