/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_git_repository.py

Implement get_ancestry properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
    def test_has_signature_for_revision_id(self):
129
129
        self.assertEquals(False, self.git_repo.has_signature_for_revision_id(revision.NULL_REVISION))
130
130
 
 
131
    def test_get_ancestry_null(self):
 
132
        self.assertEquals([None], self.git_repo.get_ancestry(revision.NULL_REVISION))
 
133
 
131
134
    def assertIsNullInventory(self, inv):
132
135
        self.assertEqual(inv.root, None)
133
136
        self.assertEqual(inv.revision_id, revision.NULL_REVISION)