/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 breezy/tests/test_workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
 
18
 
from bzrlib import (
 
18
from breezy import (
19
19
    bzrdir,
20
20
    conflicts,
21
21
    errors,
24
24
    workingtree_3,
25
25
    workingtree_4,
26
26
    )
27
 
from bzrlib.lock import write_locked
28
 
from bzrlib.lockdir import LockDir
29
 
from bzrlib.mutabletree import needs_tree_write_lock
30
 
from bzrlib.tests import TestCase, TestCaseWithTransport, TestSkipped
31
 
from bzrlib.workingtree import (
 
27
from breezy.lock import write_locked
 
28
from breezy.lockdir import LockDir
 
29
from breezy.mutabletree import needs_tree_write_lock
 
30
from breezy.tests import TestCase, TestCaseWithTransport, TestSkipped
 
31
from breezy.workingtree import (
32
32
    TreeEntry,
33
33
    TreeDirectory,
34
34
    TreeFile,
301
301
 
302
302
    def test_register_extra_lazy(self):
303
303
        self.assertEqual([], self.registry._get_all())
304
 
        self.registry.register_extra_lazy("bzrlib.tests.test_workingtree",
 
304
        self.registry.register_extra_lazy("breezy.tests.test_workingtree",
305
305
            "SampleExtraTreeFormat")
306
306
        formats = self.registry._get_all()
307
307
        self.assertEqual(1, len(formats))