summaryrefslogtreecommitdiff
path: root/tests/syndication_tests/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/syndication_tests/urls.py')
-rw-r--r--tests/syndication_tests/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/syndication_tests/urls.py b/tests/syndication_tests/urls.py
index 50f673373e..bb1d3d990d 100644
--- a/tests/syndication_tests/urls.py
+++ b/tests/syndication_tests/urls.py
@@ -36,8 +36,14 @@ urlpatterns = [
path("syndication/articles/", feeds.ArticlesFeed()),
path("syndication/template/", feeds.TemplateFeed()),
path("syndication/template_context/", feeds.TemplateContextFeed()),
+ path("syndication/stylesheet/", feeds.TestFeedWithStylesheets()),
path("syndication/rss2/single-enclosure/", feeds.TestSingleEnclosureRSSFeed()),
path("syndication/rss2/multiple-enclosure/", feeds.TestMultipleEnclosureRSSFeed()),
path("syndication/atom/single-enclosure/", feeds.TestSingleEnclosureAtomFeed()),
path("syndication/atom/multiple-enclosure/", feeds.TestMultipleEnclosureAtomFeed()),
+ path(
+ "syndication/stylesheet.xsl",
+ lambda request: None,
+ name="syndication-xsl-stylesheet",
+ ),
]