~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_update.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-08 10:14:23 UTC
  • mfrom: (5013.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100208101423-q81doa9rua7c3x6t
(vila) Fix a bunch of test imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    errors,
20
20
    revision as _mod_revision,
21
21
    )
22
 
from bzrlib.tests.per_branch.test_branch import TestCaseWithBranch
 
22
from bzrlib.tests import per_branch
23
23
 
24
24
 
25
25
"""Tests for branch.update()"""
26
26
 
27
27
 
28
 
class TestUpdate(TestCaseWithBranch):
 
28
class TestUpdate(per_branch.TestCaseWithBranch):
29
29
 
30
30
    def test_update_unbound_works(self):
31
31
        b = self.make_branch('.')
69
69
        self.assertEqual(['bar'], child_tree.branch.revision_history())
70
70
 
71
71
 
72
 
class TestUpdateRevisions(TestCaseWithBranch):
 
72
class TestUpdateRevisions(per_branch.TestCaseWithBranch):
73
73
 
74
74
    def test_accepts_graph(self):
75
75
        # An implementation may not use it, but it should allow a 'graph' to be