7 | | . It would fail unless you have "other" database defined in DATABASES dict in settings. I guess the test should ensure, that "other" DATABASE exists before querying it. At least by setting `DATABASES['other'] = DATABASES['default']` |
| 7 | . It would fail unless you have "other" database defined in DATABASES dict in settings. |
| 8 | The exception raised is `ConnectionDoesNotExist: The connection other doesn't exist` |
| 9 | |
| 10 | I guess the test should ensure, that "other" DATABASE exists before querying it. At least by setting `DATABASES['other'] = DATABASES['default']` |
| 11 | |