Check the opposite of assertLocationComment()
(self, po_filename, line_number, *comment_parts)
| 123 | return self._assertPoLocComment(True, po_filename, line_number, *comment_parts) |
| 124 | |
| 125 | def assertLocationCommentNotPresent(self, po_filename, line_number, *comment_parts): |
| 126 | """Check the opposite of assertLocationComment()""" |
| 127 | return self._assertPoLocComment(False, po_filename, line_number, *comment_parts) |
| 128 | |
| 129 | def assertRecentlyModified(self, path): |
| 130 | """ |
no test coverage detected