/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: Robert Collins
  • Date: 2010-05-05 00:05:29 UTC
  • mto: This revision was merged to the branch mainline in revision 5206.
  • Revision ID: robertc@robertcollins.net-20100505000529-ltmllyms5watqj5u
Make 'pydoc bzrlib.tests.build_tree_shape' useful.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Tests for the revision/inventory Serializers."""
19
19
 
20
20
 
21
 
from ..bzr import (
 
21
from bzrlib import (
22
22
    chk_serializer,
23
23
    serializer,
 
24
    xml4,
24
25
    xml5,
25
26
    xml6,
26
27
    xml7,
27
28
    xml8,
28
29
    )
29
 
from . import TestCase
 
30
from bzrlib.tests import TestCase
30
31
 
31
32
 
32
33
class TestSerializer(TestCase):
33
34
    """Test serializer"""
34
35
 
35
36
    def test_registry(self):
 
37
        self.assertIs(xml4.serializer_v4,
 
38
                      serializer.format_registry.get('4'))
36
39
        self.assertIs(xml5.serializer_v5,
37
40
                      serializer.format_registry.get('5'))
38
41
        self.assertIs(xml6.serializer_v6,