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

  • Committer: Vincent Ladeuil
  • Date: 2010-09-24 09:56:50 UTC
  • mto: This revision was merged to the branch mainline in revision 5446.
  • Revision ID: v.ladeuil+lp@free.fr-20100924095650-okd49n2o18q9zkmb
Clarify SRU bug nomination.

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
        self.assertEqual(s, None)
189
189
        self.assertTrue(s is None)
190
190
 
 
191
    def test_read_nul_byte(self):
 
192
        """File consisting of a nul byte causes an error."""
 
193
        self.assertRaises(ValueError, read_stanza, ['\0'])
 
194
 
 
195
    def test_read_nul_bytes(self):
 
196
        """File consisting of many nul bytes causes an error."""
 
197
        self.assertRaises(ValueError, read_stanza, ['\0' * 100])
 
198
 
191
199
    def test_read_iter(self):
192
200
        """Read several stanzas from file"""
193
201
        tmpf = TemporaryFile()