(self, xml_bytes)
| 27 | assert element is fromstring.return_value |
| 28 | |
| 29 | def it_prefers_to_parse_bytes(self, xml_bytes): |
| 30 | parse_xml(xml_bytes) |
| 31 | |
| 32 | def but_accepts_unicode_providing_there_is_no_encoding_declaration(self): |
| 33 | non_enc_decl = '<?xml version="1.0" standalone="yes"?>' |
nothing calls this directly
no test coverage detected