mirror of
https://github.com/Hopiu/django.git
synced 2026-03-18 06:50:24 +00:00
SimpleTestCase.databases makes it possible to determine the set of databases required to run the discovered tests.
18 lines
317 B
Python
18 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__'
|