(self)
| 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('''\ |
| 214 | class C: |
| 215 | f"""doc""" |
| 216 | ''')) |
| 217 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 218 | |
| 219 | def test_moduledocstring(self): |
| 220 | for doc in ('"""doc"""', "r'''doc'''", "R'doc'", 'u"doc"'): |
nothing calls this directly
no test coverage detected