~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_help.py

  • Committer: Ian Clatworthy
  • Date: 2007-07-03 00:40:04 UTC
  • mfrom: (2520.1.7 113436.1)
  • mto: This revision was merged to the branch mainline in revision 2573.
  • Revision ID: ian.clatworthy@internode.on.net-20070703004004-qilp1re0a7q9rag3
Merge Daniel Watkin's fix for #113436

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        out, err = self.run_bzr('help working-trees')
81
81
        self.assertEqual(bzrlib.help_topics._working_trees, out)
82
82
 
 
83
    def test_help_status_flags(self):
 
84
        """Smoke test for 'bzr help status-flags'"""
 
85
        out, err = self.runbzr('help status-flags')
 
86
        self.assertEqual(bzrlib.help_topics._status_flags, out)
 
87
 
83
88
    def test_help_commands(self):
84
89
        dash_help  = self.run_bzr('--help commands')[0]
85
90
        commands   = self.run_bzr('help commands')[0]