(self)
| 203 | self.assertIn('doc', msgids) |
| 204 | |
| 205 | def test_classdocstring_bytes(self): |
| 206 | msgids = self.extract_docstrings_from_str(dedent('''\ |
| 207 | class C: |
| 208 | b"""doc""" |
| 209 | ''')) |
| 210 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 211 | |
| 212 | def test_classdocstring_fstring(self): |
| 213 | msgids = self.extract_docstrings_from_str(dedent('''\ |
nothing calls this directly
no test coverage detected