diff options
Diffstat (limited to 'tests/syndication_tests/feeds.py')
| -rw-r--r-- | tests/syndication_tests/feeds.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/syndication_tests/feeds.py b/tests/syndication_tests/feeds.py index a35dc29e20..56e540c633 100644 --- a/tests/syndication_tests/feeds.py +++ b/tests/syndication_tests/feeds.py @@ -236,6 +236,13 @@ class TestGetObjectFeed(TestRss2Feed): return "Title: %s" % item.title +class TestFeedWithStylesheets(TestRss2Feed): + stylesheets = [ + "/stylesheet1.xsl", + feedgenerator.Stylesheet("/stylesheet2.xsl"), + ] + + class NaiveDatesFeed(TestAtomFeed): """ A feed with naive (non-timezone-aware) dates. |
