(self)
| 246 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 247 | |
| 248 | def test_msgid_fstring(self): |
| 249 | msgids = self.extract_docstrings_from_str('_(f"""doc""")') |
| 250 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 251 | |
| 252 | def test_funcdocstring_annotated_args(self): |
| 253 | """ Test docstrings for functions with annotated args """ |
nothing calls this directly
no test coverage detected