blob: 9076bef850ef7b0c75cce6563e1f852e1e58837f (
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 PostgresSQLTestCase(TestCase):
pass
|