mirror of
https://github.com/django/django.git
synced 2025-11-25 13:13:28 +00:00
Fixed #32233 -- Cleaned-up duplicate connection functionality.
This commit is contained in:
parent
0f00560d45
commit
98e05ccde4
9 changed files with 143 additions and 147 deletions
10
tests/utils_tests/test_connection.py
Normal file
10
tests/utils_tests/test_connection.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from django.test import SimpleTestCase
|
||||
from django.utils.connection import BaseConnectionHandler
|
||||
|
||||
|
||||
class BaseConnectionHandlerTests(SimpleTestCase):
|
||||
def test_create_connection(self):
|
||||
handler = BaseConnectionHandler()
|
||||
msg = 'Subclasses must implement create_connection().'
|
||||
with self.assertRaisesMessage(NotImplementedError, msg):
|
||||
handler.create_connection(None)
|
||||
Loading…
Add table
Add a link
Reference in a new issue