(self)
| 237 | self.assertFalse([msgid for msgid in msgids if 'doc' in msgid]) |
| 238 | |
| 239 | def test_msgid(self): |
| 240 | msgids = self.extract_docstrings_from_str( |
| 241 | '''_("""doc""" r'str' u"ing")''') |
| 242 | self.assertIn('docstring', msgids) |
| 243 | |
| 244 | def test_msgid_bytes(self): |
| 245 | msgids = self.extract_docstrings_from_str('_(b"""doc""")') |
nothing calls this directly
no test coverage detected