~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_cache_utf8.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-07 10:45:44 UTC
  • mfrom: (2321.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070307104544-59e3e6358e4bdb29
(robertc) Merge dirstate and subtrees. (Robert Collins, Martin Pool, Aaaron Bentley, John A Meinel, James Westby)

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
        utf8_x = cache_utf8.encode(uni_x)
111
111
        self.assertIs(utf8_x, x)
 
112
 
 
113
    def test_decode_with_None(self):
 
114
        self.assertEqual((None, 0), cache_utf8._utf8_decode_with_None(None))