~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
 
127
127
    def test_describe_tree_format(self):
128
128
        for key in bzrdir.format_registry.keys():
129
 
            if key in bzrdir.format_registry.aliases():
 
129
            if key == 'default':
130
130
                continue
131
131
            self.assertTreeDescription(key)
132
132
 
133
133
    def test_describe_checkout_format(self):
134
134
        for key in bzrdir.format_registry.keys():
135
 
            if key in bzrdir.format_registry.aliases():
136
 
                # Aliases will not describe correctly in the UI because the
137
 
                # real format is found.
138
 
                continue
139
 
            # legacy: weave does not support checkouts
140
 
            if key == 'weave':
141
 
                continue
142
 
            if bzrdir.format_registry.get_info(key).experimental:
143
 
                # We don't require that experimental formats support checkouts
144
 
                # or describe correctly in the UI.
 
135
            if key in ('default', 'weave', 'experimental'):
 
136
                continue
 
137
            if key.startswith('experimental-'):
 
138
                # these are typically hidden or aliases for other formats
145
139
                continue
146
140
            expected = None
147
141
            if key in ('dirstate', 'dirstate-tags', 'dirstate-with-subtree',
148
 
                'pack-0.92', 'pack-0.92-subtree', 'rich-root',
149
 
                'rich-root-pack', '1.6', '1.6.1-rich-root'):
150
 
                expected = '1.6 or 1.6.1-rich-root or ' \
151
 
                    'dirstate or dirstate-tags or pack-0.92 or'\
152
 
                    ' rich-root or rich-root-pack'
 
142
                'knitpack-experimental', 'knitpack-subtree-experimental'):
 
143
                expected = 'dirstate or dirstate-tags or knitpack-experimental'
153
144
            if key in ('knit', 'metaweave'):
154
145
                expected = 'knit or metaweave'
155
146
            self.assertCheckoutDescription(key, expected)
156
147
 
157
148
    def test_describe_branch_format(self):
158
149
        for key in bzrdir.format_registry.keys():
159
 
            if key in bzrdir.format_registry.aliases():
 
150
            if key == 'default':
160
151
                continue
161
152
            expected = None
162
153
            if key in ('dirstate', 'knit'):
165
156
 
166
157
    def test_describe_repo_format(self):
167
158
        for key in bzrdir.format_registry.keys():
168
 
            if key in bzrdir.format_registry.aliases():
 
159
            if key == 'default':
169
160
                continue
170
161
            expected = None
171
162
            if key in ('dirstate', 'knit', 'dirstate-tags'):