1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00
SickRage/lib/feedparser/tests/wellformed/node_precedence/atom10_id.xml
echel0n 0e82c5f573 Added RSS feedparser lib to process custom torrent RSS feeds.
Adjusted code for custom RSS feed parsing now that feedparser does the parsing for us all we do is pull the data from the returned entries.
2014-04-25 16:41:47 -07:00

18 lines
414 B
XML

<!--
Description: The id node which is a child of entry should be used regardless of source order.
Expect: not bozo and entries[0]['id'] == entries[1]['id'] == u'Correct Value'
-->
<feed xmlns="http://www.w3.org/2005/Atom">
<entry>
<id>Correct Value</id>
<image>
<id>Incorrect Value</id>
</image>
</entry>
<entry>
<image>
<id>Incorrect Value</id>
</image>
<id>Correct Value</id>
</entry>
</feed>