/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/blackbox/test_help.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
"""
20
20
 
21
21
 
22
 
from brzlib import (
 
22
from breezy import (
23
23
    config,
24
24
    i18n,
25
25
    tests,
26
26
    )
27
27
 
28
 
from brzlib.tests.test_i18n import ZzzTranslations
 
28
from breezy.tests.test_i18n import ZzzTranslations
29
29
 
30
30
 
31
31
class TestHelp(tests.TestCaseWithTransport):
78
78
    def test_help_repositories(self):
79
79
        """Smoke test for 'brz help repositories'"""
80
80
        out, err = self.run_bzr('help repositories')
81
 
        from brzlib.help_topics import help_as_plain_text, _repositories
 
81
        from breezy.help_topics import help_as_plain_text, _repositories
82
82
        expected = help_as_plain_text(_repositories)
83
83
        self.assertEqual(expected, out)
84
84
 
85
85
    def test_help_working_trees(self):
86
86
        """Smoke test for 'brz help working-trees'"""
87
87
        out, err = self.run_bzr('help working-trees')
88
 
        from brzlib.help_topics import help_as_plain_text, _working_trees
 
88
        from breezy.help_topics import help_as_plain_text, _working_trees
89
89
        expected = help_as_plain_text(_working_trees)
90
90
        self.assertEqual(expected, out)
91
91
 
92
92
    def test_help_status_flags(self):
93
93
        """Smoke test for 'brz help status-flags'"""
94
94
        out, err = self.run_bzr('help status-flags')
95
 
        from brzlib.help_topics import help_as_plain_text, _status_flags
 
95
        from breezy.help_topics import help_as_plain_text, _status_flags
96
96
        expected = help_as_plain_text(_status_flags)
97
97
        self.assertEqual(expected, out)
98
98