summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/sites_tests/tests.py17
1 files changed, 15 insertions, 2 deletions
diff --git a/tests/sites_tests/tests.py b/tests/sites_tests/tests.py
index 79183f7aca..32bc8f65f9 100644
--- a/tests/sites_tests/tests.py
+++ b/tests/sites_tests/tests.py
@@ -204,12 +204,25 @@ class SitesFrameworkTests(TestCase):
self.assertEqual(self.site.natural_key(), (self.site.domain,))
@override_settings(SITE_ID="1")
- def test_check_site_id(self):
+ def test_check_site_id_incorrect_type(self):
self.assertEqual(
check_site_id(None),
[
checks.Error(
- msg="The SITE_ID setting must be an integer",
+ msg="The SITE_ID setting must be of type int.",
+ id="sites.E101",
+ ),
+ ],
+ )
+
+ @override_settings(SITE_ID="x")
+ def test_check_site_id_failed_to_validate(self):
+ self.assertEqual(
+ check_site_id(None),
+ [
+ checks.Error(
+ msg="The SITE_ID setting failed to validate: ['“x” value "
+ "must be an integer.'].",
id="sites.E101",
),
],