Login
1 branch 0 tags
Ben (Desktop/Arch) Added a testsuite 7a0c574 28 days ago 84 Commits
moon / tests / fixtures / rss / basic.rss
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Example Podcast</title>

    <item>
      <title>Episode One</title>
      <guid>guid-ep-1</guid>
      <pubDate>Mon, 01 Jan 2024 10:00:00 GMT</pubDate>
      <enclosure url="https://cdn.example.com/ep1.mp3" type="audio/mpeg"/>
    </item>

    <item>
      <title>Episode Two</title>
      <pubDate>Tue, 02 Jan 2024 10:00:00 GMT</pubDate>
      <enclosure url="https://cdn.example.com/ep2.ogg" type="audio/ogg"/>
    </item>

    <item>
      <title>Episode Not Audio</title>
      <guid>guid-not-audio</guid>
      <enclosure url="https://cdn.example.com/file.txt" type="text/plain"/>
    </item>

    <item>
      <title>Episode No Enclosure</title>
      <guid>guid-no-enclosure</guid>
    </item>
  </channel>
</rss>