~jelmer/bzr-svn/svn-1.5

« back to all changes in this revision

Viewing changes to tests/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2008-07-21 19:56:11 UTC
  • mfrom: (1196.1.286 0.4)
  • Revision ID: jelmer@samba.org-20080721195611-xmm0tffdmmwooye9
mergeĀ 0.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
 
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 3 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, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
from bzrlib.plugins.svn.log import show_subversion_properties
 
17
from bzrlib.revision import Revision
 
18
 
 
19
from bzrlib.tests import TestCase
 
20
 
 
21
class LogTestCase(TestCase):
 
22
    def test_notsvn(self):
 
23
        self.assertEquals({}, show_subversion_properties(Revision("foo")))
 
24
 
 
25
    def test_svnprops(self):
 
26
        rev = Revision("foo")
 
27
        rev.svn_revision = 2
 
28
        rev.svn_branch = "bar"
 
29
        self.assertEquals({"svn revno": "2 (on /bar)"}, 
 
30
                          show_subversion_properties(rev))
 
31
 
 
32
    def test_svnrevid(self):
 
33
        rev = Revision("svn-v3-trunk0:someuuid:lala:23")
 
34
        self.assertEquals({"svn revno": "23 (on /lala)"},
 
35
                          show_subversion_properties(rev))
 
36