/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 GitRepositoryFormat.get_format_description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
        self.assertEqual(tree.get_revision_id(), revision.NULL_REVISION)
150
150
        self.assertIsNullInventory(tree.inventory)
151
151
 
 
152
 
 
153
class GitRepositoryFormat(tests.TestCase):
 
154
 
 
155
    def setUp(self):
 
156
        super(GitRepositoryFormat, self).setUp()
 
157
        self.format = git_repository.GitFormat()
 
158
 
 
159
    def test_get_format_description(self):
 
160
        self.assertEquals("Git Repository", self.format.get_format_description())