~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_controldir/test_format.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2011 Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""Tests for control directory formats."""
18
 
 
19
 
from bzrlib import (
20
 
    errors,
21
 
    )
22
 
 
23
 
from bzrlib.tests.per_controldir import TestCaseWithControlDir
24
 
 
25
 
 
26
 
class TestControlDir(TestCaseWithControlDir):
27
 
 
28
 
    def test_get_format_description(self):
29
 
        self.assertIsInstance(self.bzrdir_format.get_format_description(),
30
 
                str)
31
 
 
32
 
    def test_is_supported(self):
33
 
        self.assertIsInstance(self.bzrdir_format.is_supported(), bool)
34
 
 
35
 
    def test_upgrade_recommended(self):
36
 
        self.assertIsInstance(self.bzrdir_format.upgrade_recommended, bool)
37
 
 
38
 
    def test_supports_transport(self):
39
 
        self.assertIsInstance(
40
 
            self.bzrdir_format.supports_transport(self.get_transport()), bool)
41
 
 
42
 
    def test_check_support_status(self):
43
 
        if not self.bzrdir_format.is_supported():
44
 
            self.assertRaises(errors.UnsupportedFormatError,
45
 
                self.bzrdir_format.check_support_status, False)
46
 
        else:
47
 
            self.bzrdir_format.check_support_status(True)
48
 
            self.bzrdir_format.check_support_status(False)