(self, *mocked_objects)
| 496 | class ManageCommandParallelTests(SimpleTestCase): |
| 497 | @mock.patch.object(multiprocessing, "get_start_method", return_value="fork") |
| 498 | def test_parallel_default(self, *mocked_objects): |
| 499 | with captured_stderr() as stderr: |
| 500 | call_command( |
| 501 | "test", |
| 502 | "--parallel", |
| 503 | testrunner="test_runner.tests.MockTestRunner", |
| 504 | ) |
| 505 | self.assertIn("parallel=12", stderr.getvalue()) |
| 506 | |
| 507 | @mock.patch.object(multiprocessing, "get_start_method", return_value="fork") |
| 508 | def test_parallel_auto(self, *mocked_objects): |
nothing calls this directly
no test coverage detected