(self)
| 194 | self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', '', 'pass')) |
| 195 | |
| 196 | def test_comment_before_machine_line(self): |
| 197 | self._test_comment("""\ |
| 198 | # comment |
| 199 | machine foo.domain.com login bar password pass |
| 200 | machine bar.domain.com login foo password pass |
| 201 | """) |
| 202 | |
| 203 | def test_comment_before_machine_line_no_space(self): |
| 204 | self._test_comment("""\ |
nothing calls this directly
no test coverage detected