(self)
| 431 | b"This is a byte stream.") |
| 432 | |
| 433 | def test_text_file(self): |
| 434 | # If the source is a text file-like object, use it as a character |
| 435 | # stream. |
| 436 | prep = prepare_input_source(self.make_character_stream()) |
| 437 | self.assertIsNone(prep.getByteStream()) |
| 438 | self.checkContent(prep.getCharacterStream(), |
| 439 | "This is a character stream.") |
| 440 | |
| 441 | |
| 442 | # ===== XMLGenerator |
nothing calls this directly
no test coverage detected