/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-06 23:41:35 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506234135-yivbzczw1sejxnxc
Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
expected to return an object which can be used to unlock them. This reduces
duplicate code when using cleanups. The previous 'tokens's returned by
``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
on the result of the lock_write. ``repository.RepositoryWriteLockResult``
and ``branch.BranchWriteLockResult`` document this. (Robert Collins)

``log._get_info_for_log_files`` now takes an add_cleanup callable.
(Robert Collins)

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,