(self)
| 187 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 188 | |
| 189 | def test_funcdocstring_fstring(self): |
| 190 | msgids = self.extract_docstrings_from_str(dedent('''\ |
| 191 | def foo(bar): |
| 192 | f"""doc""" |
| 193 | ''')) |
| 194 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 195 | |
| 196 | def test_classdocstring(self): |
| 197 | for doc in ('"""doc"""', "r'''doc'''", "R'doc'", 'u"doc"'): |
nothing calls this directly
no test coverage detected