diff options
| author | Tim Graham <timograham@gmail.com> | 2018-01-04 14:41:38 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-01-04 15:41:33 -0500 |
| commit | 8e1a7dab4b98dee2c696d435ea02f56de6250aa0 (patch) | |
| tree | 484aa0e6600e67efcbc6f832bfecd96867a0535c /tests/test_runner_apps/simple | |
| parent | d7b2aa24f75434c2ce50100cfef3586071e0747a (diff) | |
Reorganized test_runner test apps.
Diffstat (limited to 'tests/test_runner_apps/simple')
| -rw-r--r-- | tests/test_runner_apps/simple/__init__.py | 0 | ||||
| -rw-r--r-- | tests/test_runner_apps/simple/tests.py | 57 |
2 files changed, 57 insertions, 0 deletions
diff --git a/tests/test_runner_apps/simple/__init__.py b/tests/test_runner_apps/simple/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/test_runner_apps/simple/__init__.py diff --git a/tests/test_runner_apps/simple/tests.py b/tests/test_runner_apps/simple/tests.py new file mode 100644 index 0000000000..ac3e9daba0 --- /dev/null +++ b/tests/test_runner_apps/simple/tests.py @@ -0,0 +1,57 @@ +from unittest import TestCase + +from django.test import SimpleTestCase, TestCase as DjangoTestCase + + +class DjangoCase1(DjangoTestCase): + + def test_1(self): + pass + + def test_2(self): + pass + + +class DjangoCase2(DjangoTestCase): + + def test_1(self): + pass + + def test_2(self): + pass + + +class SimpleCase1(SimpleTestCase): + + def test_1(self): + pass + + def test_2(self): + pass + + +class SimpleCase2(SimpleTestCase): + + def test_1(self): + pass + + def test_2(self): + pass + + +class UnittestCase1(TestCase): + + def test_1(self): + pass + + def test_2(self): + pass + + +class UnittestCase2(TestCase): + + def test_1(self): + pass + + def test_2(self): + pass |
