(self)
| 225 | self.assertIn('doc', msgids) |
| 226 | |
| 227 | def test_moduledocstring_bytes(self): |
| 228 | msgids = self.extract_docstrings_from_str(dedent('''\ |
| 229 | b"""doc""" |
| 230 | ''')) |
| 231 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 232 | |
| 233 | def test_moduledocstring_fstring(self): |
| 234 | msgids = self.extract_docstrings_from_str(dedent('''\ |
nothing calls this directly
no test coverage detected