/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_non_ascii.py

  • Committer: John Arbash Meinel
  • Date: 2006-01-06 03:02:46 UTC
  • mto: (1685.1.1 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060106030246-f6939f2747212579
Updated cmd_inventory. Changing from having each Command request an encoded stdout to providing one before calling run()

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
        #       this text needs to be fixed
139
139
        self.bzr('relpath', _shrimp_sandwich, encoding='ascii',
140
140
                 retcode=3)
 
141
 
 
142
    def test_inventory(self):
 
143
        txt = self.bzr('inventory')
 
144
        self.assertEqual(['a', 'b', u'\u062c\u0648\u062c\u0648.txt'],
 
145
                         txt.splitlines())
 
146