diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-04-02 13:27:17 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-04-02 13:27:17 +0000 |
| commit | 3b94af8a849b4b37051abd5a84a03dc1fd307569 (patch) | |
| tree | ae3fc8a85e888b6e3d5ff9a6c1a5873fc17732d6 /tests/regressiontests/conditional_processing/models.py | |
| parent | bcdbafc88aaf35682165f8a814d1f13daf095fac (diff) | |
Modified some regression tests to make them independent of the default root urlconf.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15999 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/conditional_processing/models.py')
| -rw-r--r-- | tests/regressiontests/conditional_processing/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/conditional_processing/models.py b/tests/regressiontests/conditional_processing/models.py index 48fe01143f..0f9bb52b52 100644 --- a/tests/regressiontests/conditional_processing/models.py +++ b/tests/regressiontests/conditional_processing/models.py @@ -16,6 +16,8 @@ EXPIRED_ETAG = '7fae4cd4b0f81e7d2914700043aa8ed6' class ConditionalGet(TestCase): + urls = 'regressiontests.conditional_processing.urls' + def assertFullResponse(self, response, check_last_modified=True, check_etag=True): self.assertEqual(response.status_code, 200) self.assertEqual(response.content, FULL_RESPONSE) |
