~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revprops.py

Late bind to PatienceSequenceMatcher to allow plugin to override.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
1
# (C) 2005 Canonical
16
2
 
17
3
"""Tests for revision properties."""
18
4
 
19
 
from bzrlib.tests.repository_implementations.test_repository import (
20
 
    TestCaseWithRepository,
21
 
    )
 
5
from bzrlib.tests import TestCaseWithTransport
22
6
 
23
 
class TestRevProps(TestCaseWithRepository):
 
7
class TestRevProps(TestCaseWithTransport):
24
8
 
25
9
    def test_simple_revprops(self):
26
10
        """Simple revision properties"""
27
11
        wt = self.make_branch_and_tree('.')
28
12
        b = wt.branch
29
13
        b.nick = 'Nicholas'
30
 
        props = dict(flavor='choc-mint',
31
 
                     condiment='orange\n  mint\n\tcandy',
32
 
                     empty='',
33
 
                     non_ascii=u'\xb5')
 
14
        props = dict(flavor='choc-mint', 
 
15
                     condiment='orange\n  mint\n\tcandy')
34
16
        wt.commit(message='initial null commit', 
35
17
                 revprops=props,
36
18
                 allow_pointless=True,
38
20
        rev = b.repository.get_revision('test@user-1')
39
21
        self.assertTrue('flavor' in rev.properties)
40
22
        self.assertEquals(rev.properties['flavor'], 'choc-mint')
41
 
        self.assertEquals([('branch-nick', 'Nicholas'), 
 
23
        self.assertEquals(sorted(rev.properties.items()),
 
24
                          [('branch-nick', 'Nicholas'), 
42
25
                           ('condiment', 'orange\n  mint\n\tcandy'),
43
 
                           ('empty', ''),
44
 
                           ('flavor', 'choc-mint'),
45
 
                           ('non_ascii', u'\xb5'),
46
 
                          ], sorted(rev.properties.items()))
 
26
                           ('flavor', 'choc-mint')])
47
27
 
48
28
    def test_invalid_revprops(self):
49
29
        """Invalid revision properties"""