(self)
| 242 | self.assertIn('docstring', msgids) |
| 243 | |
| 244 | def test_msgid_bytes(self): |
| 245 | msgids = self.extract_docstrings_from_str('_(b"""doc""")') |
| 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""")') |
nothing calls this directly
no test coverage detected