1
0
mirror of https://github.com/django/django.git synced 2025-04-06 06:26:41 +00:00

Add test for no backends configured

This commit is contained in:
Jake Howard 2024-11-21 13:41:20 +00:00
parent 05cb11334b
commit 1e914655af
No known key found for this signature in database
GPG Key ID: 57AFB45680EDD477

View File

@ -248,3 +248,8 @@ class TaskTestCase(SimpleTestCase):
import_string(test_tasks.noop_task_async.module_path),
test_tasks.noop_task_async,
)
@override_settings(TASKS={})
def test_no_backends(self):
with self.assertRaises(InvalidTaskBackendError):
test_tasks.noop_task.enqueue()