/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 breezy/tests/per_controldir/test_format.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-04 00:16:27 UTC
  • mfrom: (7293 work)
  • mto: This revision was merged to the branch mainline in revision 7318.
  • Revision ID: jelmer@jelmer.uk-20190304001627-v6u7o6pf97tukhek
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
    def test_get_format_description(self):
29
29
        self.assertIsInstance(self.bzrdir_format.get_format_description(),
30
 
                str)
 
30
                              str)
31
31
 
32
32
    def test_is_supported(self):
33
33
        self.assertIsInstance(self.bzrdir_format.is_supported(), bool)
42
42
    def test_check_support_status(self):
43
43
        if not self.bzrdir_format.is_supported():
44
44
            self.assertRaises(errors.UnsupportedFormatError,
45
 
                self.bzrdir_format.check_support_status, False)
 
45
                              self.bzrdir_format.check_support_status, False)
46
46
        else:
47
47
            self.bzrdir_format.check_support_status(True)
48
48
            self.bzrdir_format.check_support_status(False)