mirror of https://github.com/django/django.git
19 lines
317 B
Python
19 lines
317 B
Python
|
import unittest
|
||
|
|
||
|
|
||
|
class NoDatabaseTests(unittest.TestCase):
|
||
|
def test_nothing(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class DefaultDatabaseTests(NoDatabaseTests):
|
||
|
databases = {'default'}
|
||
|
|
||
|
|
||
|
class OtherDatabaseTests(NoDatabaseTests):
|
||
|
databases = {'other'}
|
||
|
|
||
|
|
||
|
class AllDatabasesTests(NoDatabaseTests):
|
||
|
databases = '__all__'
|