mirror of
https://github.com/django/django.git
synced 2025-01-15 12:52:31 +00:00
4c468800ee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
20 lines
781 B
Python
20 lines
781 B
Python
import warnings
|
|
|
|
from django.test.utils import get_warnings_state, restore_warnings_state
|
|
|
|
from regressiontests.comment_tests.tests import CommentTestCase
|
|
|
|
|
|
class CommentFeedTests(CommentTestCase):
|
|
urls = 'regressiontests.comment_tests.urls'
|
|
feed_url = '/rss/comments/'
|
|
|
|
def test_feed(self):
|
|
response = self.client.get(self.feed_url)
|
|
self.assertEqual(response.status_code, 200)
|
|
self.assertEqual(response['Content-Type'], 'application/rss+xml')
|
|
self.assertContains(response, '<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">')
|
|
self.assertContains(response, '<title>example.com comments</title>')
|
|
self.assertContains(response, '<link>http://example.com/</link>')
|
|
self.assertContains(response, '</rss>')
|