feat: LetterFeed icon for feed

This commit is contained in:
Leon
2025-07-19 19:21:20 +02:00
parent 5abb379af0
commit 120718987e
3 changed files with 6 additions and 0 deletions

View File

@@ -185,6 +185,9 @@ def test_get_newsletter_feed(client: TestClient):
logo = root.find("atom:logo", ns)
assert logo is not None
assert logo.text == "http://localhost:8000/logo.png"
icon = root.find("atom:icon", ns)
assert icon is not None
assert icon.text == "http://localhost:8000/favicon.ico"
entry_titles = [
entry.find("atom:title", ns).text for entry in root.findall("atom:entry", ns)
]