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

  • Committer: Jelmer Vernooij
  • Date: 2020-04-05 19:11:34 UTC
  • mto: (7490.7.16 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200405191134-0aebh8ikiwygxma5
Populate the .gitignore file.

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 bzrlib import (
 
21
from ..bzr import (
22
22
    chk_serializer,
23
23
    serializer,
24
 
    xml4,
25
24
    xml5,
26
25
    xml6,
27
26
    xml7,
28
27
    xml8,
29
28
    )
30
 
from bzrlib.tests import TestCase
 
29
from . import TestCase
31
30
 
32
31
 
33
32
class TestSerializer(TestCase):
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,