Fixed #32233 -- Cleaned-up duplicate connection functionality.

This commit is contained in:
Florian Apolloner 2017-10-22 17:30:42 +02:00 committed by Mariusz Felisiak
parent 0f00560d45
commit 98e05ccde4
9 changed files with 143 additions and 147 deletions

View 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)