(self)
| 180 | self.assertIn('doc', msgids) |
| 181 | |
| 182 | def test_funcdocstring_bytes(self): |
| 183 | msgids = self.extract_docstrings_from_str(dedent('''\ |
| 184 | def foo(bar): |
| 185 | b"""doc""" |
| 186 | ''')) |
| 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('''\ |
nothing calls this directly
no test coverage detected