~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_version_info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-20 16:16:34 UTC
  • mfrom: (3123.5.18 hardlinks)
  • Revision ID: pqm@pqm.ubuntu.com-20071220161634-2kcjb650o21ydko4
Accelerate build_tree using similar workingtrees (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import os
22
22
import sys
23
23
 
24
 
from bzrlib import (
25
 
    errors,
26
 
    symbol_versioning,
27
 
    tests,
28
 
    version_info_formats,
29
 
    )
30
24
from bzrlib.tests import TestCaseWithTransport
31
25
from bzrlib.rio import read_stanzas
32
26
 
257
251
        val = regen('clean: {clean}', check_for_clean=True)
258
252
        self.assertEqual(val, 'clean: 0')
259
253
        os.remove('branch/c')
260
 
 
261
 
    def test_custom_without_template(self):
262
 
        builder = CustomVersionInfoBuilder(None)
263
 
        sio = StringIO()
264
 
        self.assertRaises(errors.NoTemplate, builder.generate, sio)
265
 
 
266
 
 
267
 
class TestBuilder(version_info_formats.VersionInfoBuilder):
268
 
    pass
269
 
 
270
 
 
271
 
class TestVersionInfoFormatRegistry(tests.TestCase):
272
 
 
273
 
    def setUp(self):
274
 
        super(TestVersionInfoFormatRegistry, self).setUp()
275
 
        registry = version_info_formats.format_registry
276
 
        self._default_key = registry._default_key
277
 
        self._dict = registry._dict.copy()
278
 
        self._help_dict = registry._help_dict.copy()
279
 
        self._info_dict = registry._info_dict.copy()
280
 
        self.addCleanup(self._cleanup)
281
 
 
282
 
    def _cleanup(self):
283
 
        # Restore the registry to pristine state after the test runs
284
 
        registry = version_info_formats.format_registry
285
 
        registry._default_key = self._default_key
286
 
        registry._dict = self._dict
287
 
        registry._help_dict = self._help_dict
288
 
        registry._info_dict = self._info_dict
289
 
 
290
 
    def test_register_remove(self):
291
 
        registry = version_info_formats.format_registry
292
 
        registry.register('testbuilder',
293
 
            TestBuilder, 'a simple test builder')
294
 
        self.assertIs(TestBuilder, registry.get('testbuilder'))
295
 
        self.assertEqual('a simple test builder',
296
 
                         registry.get_help('testbuilder'))
297
 
        registry.remove('testbuilder')
298
 
        self.assertRaises(KeyError, registry.get, 'testbuilder')