mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #29084 -- Skipped some postgres_tests.test_search tests when pg_catalog isn't English.
This commit is contained in:
parent
68bd8f4cb4
commit
e673c87b56
2 changed files with 20 additions and 1 deletions
|
@ -4,6 +4,7 @@ from forms_tests.widget_tests.base import WidgetTest
|
|||
|
||||
from django.db import connection
|
||||
from django.test import SimpleTestCase, TestCase, modify_settings
|
||||
from django.utils.functional import cached_property
|
||||
|
||||
|
||||
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
||||
|
@ -17,7 +18,16 @@ class PostgreSQLSimpleTestCase(SimpleTestCase):
|
|||
# To register type handlers and locate the widget's template.
|
||||
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
||||
class PostgreSQLTestCase(TestCase):
|
||||
pass
|
||||
@cached_property
|
||||
def default_text_search_config(self):
|
||||
with connection.cursor() as cursor:
|
||||
cursor.execute("SHOW default_text_search_config")
|
||||
row = cursor.fetchone()
|
||||
return row[0] if row else None
|
||||
|
||||
def check_default_text_search_config(self):
|
||||
if self.default_text_search_config != "pg_catalog.english":
|
||||
self.skipTest("The default text search config is not 'english'.")
|
||||
|
||||
|
||||
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue