diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 18:21:54 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 18:21:54 -0800 |
| commit | f9b22750dced97a974005593909077d09b1129b9 (patch) | |
| tree | 63e0630ec23cab5f7b25d61ff5751d6e4d6230f0 /scripts/mock_feed.xml | |
| parent | 1413eca1f1dfea2fe125a5dc9bde293058cc3e03 (diff) | |
| download | neko-f9b22750dced97a974005593909077d09b1129b9.tar.gz neko-f9b22750dced97a974005593909077d09b1129b9.tar.bz2 neko-f9b22750dced97a974005593909077d09b1129b9.zip | |
test: mock RSS feeds in E2E tests
Diffstat (limited to 'scripts/mock_feed.xml')
| -rw-r--r-- | scripts/mock_feed.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/mock_feed.xml b/scripts/mock_feed.xml new file mode 100644 index 0000000..6bbe1c3 --- /dev/null +++ b/scripts/mock_feed.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<rss version="2.0"> +<channel> + <title>Mock Feed</title> + <link>http://localhost:9000/mock_feed.xml</link> + <description>A mock feed for testing purposes</description> + <item> + <title>Mock Item 1</title> + <link>http://localhost:9000/item1</link> + <description>This is the first mock item.</description> + <pubDate>Mon, 06 Sep 2024 16:45:00 +0000</pubDate> + <guid>http://localhost:9000/item1</guid> + </item> + <item> + <title>Mock Item 2</title> + <link>http://localhost:9000/item2</link> + <description>This is the second mock item.</description> + <pubDate>Mon, 06 Sep 2024 16:40:00 +0000</pubDate> + <guid>http://localhost:9000/item2</guid> + </item> +</channel> +</rss> |
