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