1
0
mirror of https://github.com/django/django.git synced 2025-01-16 05:12:23 +00:00

10 lines
215 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")
2015-05-30 22:18:01 +01:00
class PostgreSQLTestCase(TestCase):
pass