Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/postgres_tests/__init__.py
blob: 55b88427efb990dd946bb7acbc59c5a79f421b6c (plain)
1
2
3
4
5
6
7
8
9
import unittest

from django.db import connection
from django.test import TestCase


@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
class PostgreSQLTestCase(TestCase):
    pass