Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 682B

123456789101112131415161718
  1. """Django Unit Test framework."""
  2. from django.test.client import Client, RequestFactory
  3. from django.test.testcases import (
  4. LiveServerTestCase, SimpleTestCase, TestCase, TransactionTestCase,
  5. skipIfDBFeature, skipUnlessAnyDBFeature, skipUnlessDBFeature,
  6. )
  7. from django.test.utils import (
  8. ignore_warnings, modify_settings, override_settings,
  9. override_system_checks, tag,
  10. )
  11. __all__ = [
  12. 'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase',
  13. 'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature',
  14. 'skipUnlessAnyDBFeature', 'skipUnlessDBFeature', 'ignore_warnings',
  15. 'modify_settings', 'override_settings', 'override_system_checks', 'tag',
  16. ]