~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_serializer.py

  • Committer: INADA Naoki
  • Date: 2011-05-05 09:15:34 UTC
  • mto: (5830.3.3 i18n-msgfmt)
  • mto: This revision was merged to the branch mainline in revision 5873.
  • Revision ID: songofacandy@gmail.com-20110505091534-7sv835xpofwrmpt4
Add update-pot command to Makefile and tools/bzrgettext script that
extracts help text from bzr commands.

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,