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

Add some basic documentation in 'bzr help git'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
    def setUp(self):
60
60
        super(TestGitDirFormat, self).setUp()
61
 
        self.format = dir.LocalGitControlDirFormat()
 
61
        self.format = dir.LocalGitBzrDirFormat()
62
62
 
63
63
    def test_get_format_description(self):
64
64
        self.assertEquals("Local Git Repository",
65
65
                          self.format.get_format_description())
66
66
 
67
67
    def test_eq(self):
68
 
        format2 = dir.LocalGitControlDirFormat()
 
68
        format2 = dir.LocalGitBzrDirFormat()
69
69
        self.assertEquals(self.format, format2)
70
70
        self.assertEquals(self.format, self.format)
71
71
        bzr_format = bzrdir.format_registry.make_bzrdir("default")