/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 bzrlib/tests/test_serializer.py

  • Committer: Martin von Gagern
  • Date: 2011-06-01 07:01:17 UTC
  • mto: This revision was merged to the branch mainline in revision 5963.
  • Revision ID: martin.vgagern@gmx.net-20110601070117-3b08kqy51062ep0y
Allow -s as shorthand for --log-format=short.

This is implemented by allowing a keyword argument named
short_value_switches for the RegistryOption initializer.  It maps long names
to short names.  The newly added short option affects the commands log and
missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from bzrlib import (
22
22
    chk_serializer,
23
23
    serializer,
24
 
    xml4,
25
24
    xml5,
26
25
    xml6,
27
26
    xml7,
34
33
    """Test serializer"""
35
34
 
36
35
    def test_registry(self):
37
 
        self.assertIs(xml4.serializer_v4,
38
 
                      serializer.format_registry.get('4'))
39
36
        self.assertIs(xml5.serializer_v5,
40
37
                      serializer.format_registry.get('5'))
41
38
        self.assertIs(xml6.serializer_v6,