/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/selftest/testrevprops.py

  • Committer: Robert Collins
  • Date: 2005-10-16 00:22:17 UTC
  • mto: This revision was merged to the branch mainline in revision 1457.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051016002217-aa38f9c1eb13ee48
Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin.

Plugins are also made available for other plugins to use by making them 
accessible via import bzrlib.plugins.NAME. You should not import other
plugins during the __init__ of your plugin though, as no ordering is
guaranteed, and the plugins directory is not on the python path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# (C) 2005 Canonical
 
2
 
 
3
"""Tests for revision properties."""
 
4
 
 
5
from bzrlib.branch import Branch
 
6
from bzrlib.selftest import TestCaseInTempDir
 
7
 
 
8
class TestRevProps(TestCaseInTempDir):
 
9
    def test_simple_revprops(self):
 
10
        """Simple revision properties"""
 
11
        b = Branch.initialize('.')
 
12
        props = dict(flavor='choc-mint', 
 
13
                     condiment='orange\n  mint\n\tcandy')
 
14
        b.commit(message='initial null commit', 
 
15
                 revprops=props,
 
16
                 allow_pointless=True,
 
17
                 rev_id='test@user-1')
 
18
        rev = b.get_revision('test@user-1')
 
19
        self.assertTrue('flavor' in rev.properties)
 
20
        self.assertEquals(rev.properties['flavor'], 'choc-mint')
 
21
        self.assertEquals(sorted(rev.properties.items()),
 
22
                          [('condiment', 'orange\n  mint\n\tcandy'),
 
23
                           ('flavor', 'choc-mint')])
 
24
 
 
25
    def test_invalid_revprops(self):
 
26
        """Invalid revision properties"""
 
27
        b = Branch.initialize('.')
 
28
        self.assertRaises(ValueError,
 
29
                          b.commit, 
 
30
                          message='invalid',
 
31
                          revprops={'what a silly property': 'fine'})
 
32
        self.assertRaises(ValueError,
 
33
                          b.commit, 
 
34
                          message='invalid',
 
35
                          revprops=dict(number=13))