(self)
| 466 | MockTestRunner.run_tests.assert_called_with(("sites",)) |
| 467 | |
| 468 | def test_bad_test_runner(self): |
| 469 | with self.assertRaises(AttributeError): |
| 470 | call_command("test", "sites", testrunner="test_runner.NonexistentRunner") |
| 471 | |
| 472 | def test_time_recorded(self): |
| 473 | with captured_stderr() as stderr: |
nothing calls this directly
no test coverage detected