/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 brzlib/tests/test_library_state.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 12:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521124127-iv8etg0vwymyai6y
s/bzr/brz/ in apport config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for BzrLibraryState."""
18
18
 
19
 
import breezy
20
 
from .. import (
 
19
from brzlib import (
21
20
    library_state,
22
21
    tests,
23
22
    ui as _mod_ui
24
23
    )
25
 
from . import fixtures
 
24
from brzlib.tests import fixtures
26
25
 
27
26
 
28
27
# TODO: once sufficiently cleaned up this should be able to be TestCase.
29
28
class TestLibraryState(tests.TestCaseWithTransport):
30
29
 
31
30
    def test_ui_is_used(self):
32
 
        self.overrideAttr(breezy, '_global_state', None)
33
31
        ui = _mod_ui.SilentUIFactory()
34
32
        state = library_state.BzrLibraryState(
35
33
            ui=ui, trace=fixtures.RecordingContextManager())
42
40
            self.assertEqual(orig_ui, _mod_ui.ui_factory)
43
41
 
44
42
    def test_trace_context(self):
45
 
        self.overrideAttr(breezy, '_global_state', None)
46
43
        tracer = fixtures.RecordingContextManager()
47
44
        ui = _mod_ui.SilentUIFactory()
48
45
        state = library_state.BzrLibraryState(ui=ui, trace=tracer)