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

  • Committer: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

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 bzrlib import (
21
20
    library_state,
22
21
    tests,
23
22
    ui as _mod_ui
24
23
    )
25
 
from . import fixtures
 
24
from bzrlib.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)