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

  • Committer: Aaron Bentley
  • Date: 2008-09-08 20:26:41 UTC
  • mfrom: (3696 +trunk)
  • mto: (3363.13.5 extras)
  • mto: This revision was merged to the branch mainline in revision 3715.
  • Revision ID: aaron@aaronbentley.com-20080908202641-7w9dyg04344t262b
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
452
452
        self.build_tree_contents([('alt/a', 'content of a\nfrom alt\n')])
453
453
        alt_id = alt.commit('alt')
454
454
        tree.merge_from_branch(alt.branch)
455
 
        output = StringIO()
 
455
        output = self.make_utf8_encoded_stringio()
456
456
        show_tree_status(tree, to_file=output)
457
457
        self.assertContainsRe(output.getvalue(), 'pending merges:')
458
458
        out, err = self.run_bzr('status tree/a')