(self)
| 215 | """) |
| 216 | |
| 217 | def test_comment_after_machine_line(self): |
| 218 | self._test_comment("""\ |
| 219 | machine foo.domain.com login bar password pass |
| 220 | # comment |
| 221 | machine bar.domain.com login foo password pass |
| 222 | """) |
| 223 | self._test_comment("""\ |
| 224 | machine foo.domain.com login bar password pass |
| 225 | machine bar.domain.com login foo password pass |
| 226 | # comment |
| 227 | """) |
| 228 | |
| 229 | def test_comment_after_machine_line_no_space(self): |
| 230 | self._test_comment("""\ |
nothing calls this directly
no test coverage detected