mirror of
https://github.com/django/django.git
synced 2024-12-23 17:46:27 +00:00
41e73de39d
SimpleTestCase.databases makes it possible to determine the set of databases required to run the discovered tests.
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__'
|