(self)
| 35 | self.assertEqual(expected_docstring_info, docstring_info) |
| 36 | |
| 37 | def test_one_line_simple_whitespace(self): |
| 38 | docstring = """ |
| 39 | A simple one line docstring. |
| 40 | """ |
| 41 | docstring_info = docstrings.parse(docstring) |
| 42 | expected_docstring_info = DocstringInfo( |
| 43 | summary='A simple one line docstring.', |
| 44 | ) |
| 45 | self.assertEqual(expected_docstring_info, docstring_info) |
| 46 | |
| 47 | def test_one_line_too_long(self): |
| 48 | # pylint: disable=line-too-long |
nothing calls this directly
no test coverage detected