2015-04-04 16:10:26 +00:00
|
|
|
import unittest
|
|
|
|
|
2017-04-29 23:00:21 +00:00
|
|
|
from forms_tests.widget_tests.base import WidgetTest
|
|
|
|
|
2015-04-04 16:10:26 +00:00
|
|
|
from django.db import connection
|
2018-11-26 19:05:02 +00:00
|
|
|
from django.test import SimpleTestCase, TestCase, modify_settings
|
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
|
|
|
|
class PostgreSQLSimpleTestCase(SimpleTestCase):
|
|
|
|
pass
|
2015-04-04 16:10:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
|
2015-05-30 21:18:01 +00:00
|
|
|
class PostgreSQLTestCase(TestCase):
|
2018-11-12 16:15:48 +00:00
|
|
|
pass
|
2017-04-29 23:00:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
|
|
|
|
# To locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={'append': 'django.contrib.postgres'})
|
2018-11-26 19:05:02 +00:00
|
|
|
class PostgreSQLWidgetTestCase(WidgetTest, PostgreSQLSimpleTestCase):
|
2017-04-29 23:00:21 +00:00
|
|
|
pass
|