~bzr-pqm/bzr/bzr.dev

« 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 00:23:18 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-20060106002318-4176733fedf61161
Refactoring AddAction to allow redirecting to an encoding file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
        else:
73
73
            if os.environ.get('BZREMAIL', None) is not None:
74
74
                del os.environ['BZREMAIL']
75
 
        super(TestEmail, self).tearDown()
 
75
        super(TestNonAscii, self).tearDown()
76
76
 
77
77
    def test_log(self):
78
78
        bzr = self.run_bzr
79
79
        txt = bzr('log')[0]
80
80
 
 
81
    #def test_ls(self):
 
82
    #    bzr = self.run_bzr
 
83
    #    txt = bzr('ls')[0]
 
84