1 # -*- coding: utf-8 -*-
3 from django
.test
import TestCase
4 from django
.test
.client
import Client
6 class SyndicationFeedTest(TestCase
):
7 def test_complex_base_url(self
):
9 Tests that that the base url for a complex feed doesn't raise a 500
13 response
= c
.get('/syndication/feeds/complex/')
14 self
.assertEquals(response
.status_code
, 404)