/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_dir.py

Implement GitBzrDirFormat.get_format_description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
        gd = bzrdir.BzrDir.open('.')
35
35
        self.assertIsInstance(gd, git_dir.GitDir)
 
36
 
 
37
 
 
38
class TestGitDirFormat(tests.TestCaseInTempDir):
 
39
 
 
40
    _test_needs_features = [tests.GitCommandFeature]
 
41
 
 
42
    def setUp(self):
 
43
        super(TestGitDirFormat, self).setUp()
 
44
        self.format = git_dir.GitBzrDirFormat()
 
45
 
 
46
    def test_get_format_description(self):
 
47
        self.assertEquals("Local Git Repository",
 
48
                          self.format.get_format_description())
 
49