1
0
mirror of https://github.com/django/django.git synced 2025-01-27 18:49:23 +00:00

10 lines
216 B
Python
Raw Normal View History

import unittest
from django.db import connection
from django.test import TestCase
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
class PostgresSQLTestCase(TestCase):
pass