~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_serializer.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-11 11:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5851.
  • Revision ID: john@arbash-meinel.com-20110511113528-qepibuwxicjrbb2h
Break compatibility with python <2.6.

This includes auditing the code for places where we were doing
explicit 'sys.version' checks and removing them as appropriate.

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,