~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_controldir/test_push.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-24 21:59:21 UTC
  • mfrom: (5363.2.22 controldir-1)
  • Revision ID: pqm@pqm.ubuntu.com-20100824215921-p4nheij9k4x6i1jw
(jelmer) Split generic interface code out of bzrlib.bzrdir.BzrDir into
 bzrlib.controldir.ControlDir. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for bzrdir implementations - push."""
18
18
 
19
 
from bzrlib import (
20
 
    errors,
21
 
    )
22
 
from bzrlib.tests.per_bzrdir import (
23
 
    TestCaseWithBzrDir,
24
 
    )
25
 
 
26
 
 
27
 
class TestPush(TestCaseWithBzrDir):
 
19
from bzrlib.tests.per_controldir import (
 
20
    TestCaseWithControlDir,
 
21
    )
 
22
 
 
23
 
 
24
class TestPush(TestCaseWithControlDir):
28
25
 
29
26
    def create_simple_tree(self):
30
27
        tree = self.make_branch_and_tree('tree')