From 731bdfe68ae8dd332702b1838db44f0efe433e2e Mon Sep 17 00:00:00 2001 From: "Buddy Lindsey, Jr" Date: Mon, 1 Feb 2016 11:24:33 -0600 Subject: Fixed #26155 -- Skipped URL checks if no ROOTURL_CONF setting. --- tests/check_framework/test_urls.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/check_framework') diff --git a/tests/check_framework/test_urls.py b/tests/check_framework/test_urls.py index 19f2d2990e..7fe13c9c40 100644 --- a/tests/check_framework/test_urls.py +++ b/tests/check_framework/test_urls.py @@ -1,3 +1,4 @@ +from django.conf import settings from django.core.checks.urls import check_url_config from django.test import SimpleTestCase from django.test.utils import override_settings @@ -35,3 +36,9 @@ class CheckUrlsTest(SimpleTestCase): self.assertEqual(warning.id, 'urls.W003') expected_msg = "Your URL pattern '^$' [name='name_with:colon'] has a name including a ':'." self.assertIn(expected_msg, warning.msg) + + @override_settings(ROOT_URLCONF=None) + def test_no_root_urlconf_in_settings(self): + delattr(settings, 'ROOT_URLCONF') + result = check_url_config(None) + self.assertEqual(result, []) -- cgit v1.3