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:
parent
05cb11334b
commit
1e914655af
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user