Beispiel #1
0
def test_read_bytes():
    assert isinstance(parse_rss_bytes(data), RSSChannel)
Beispiel #2
0
def test_broken_not_xml():
    with pytest.raises(FeedXMLError):
        parse_rss_bytes(b'This is not an XML document')