(self)
| 3317 | """python -m django works like django-admin.""" |
| 3318 | |
| 3319 | def test_program_name_in_help(self): |
| 3320 | out, err = self.run_test(["-m", "django", "help"]) |
| 3321 | self.assertOutput( |
| 3322 | out, |
| 3323 | "Type 'python -m django help <subcommand>' for help on a specific " |
| 3324 | "subcommand.", |
| 3325 | ) |
| 3326 | |
| 3327 | |
| 3328 | class DjangoAdminSuggestions(AdminScriptTestCase): |
nothing calls this directly
no test coverage detected