2015-04-04 18:10:26 +02:00
|
|
|
import unittest
|
|
|
|
|
2017-04-29 19:00:21 -04:00
|
|
|
from forms_tests.widget_tests.base import WidgetTest
|
|
|
|
|
2015-04-04 18:10:26 +02:00
|
|
|
from django.db import connection
|
2018-11-26 14:05:02 -05:00
|
|
|
from django.test import SimpleTestCase, TestCase, modify_settings
|
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
|
|
|
|
class PostgreSQLSimpleTestCase(SimpleTestCase):
|
|
|
|
pass
|
2015-04-04 18:10:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
|
2015-05-30 22:18:01 +01:00
|
|
|
class PostgreSQLTestCase(TestCase):
|
2018-11-12 11:15:48 -05:00
|
|
|
pass
|
2017-04-29 19:00:21 -04: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 14:05:02 -05:00
|
|
|
class PostgreSQLWidgetTestCase(WidgetTest, PostgreSQLSimpleTestCase):
|
2017-04-29 19:00:21 -04:00
|
|
|
pass
|