~ubuntu-branches/debian/sid/trac-bzr/sid

« back to all changes in this revision

Viewing changes to tracbzr/tests/test_node.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-12-25 15:37:57 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091225153757-n8v0lixk6pwxep36
Tags: 0.3.0-1
* New upstream release.
* Add watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
                          (u'tree/a/b', 'tree,1', 'add')], 
53
53
                         list(node.get_history()))
54
54
        node = repo.get_node('')
55
 
        self.assertEqual([('', urllib.quote(CURRENT_REVISION), 'add')], list(node.get_history()))
 
55
        self.assertEqual([('', CURRENT_REVISION, 'add')], list(node.get_history()))
56
56
 
57
57
    def test_get_dir_history(self):
58
58
        self.commit_foo_bar_baz()
71
71
                          (u'tree', 'tree,4', 'edit'),
72
72
                          (u'tree', 'tree,3', 'edit'),
73
73
                          (u'tree', 'tree,2', 'edit'),
74
 
                          (u'tree', 'tree,1', 'add')], 
 
74
                          (u'tree', 'tree,1', 'edit'),
 
75
                          (u'tree', 'tree,0', 'add')], 
75
76
                         list(node.get_history()))