(self, _)
| 1826 | side_effect=["yes", "YES", "Y", "yeS", "y", "YeS", "yES", "YEs"], |
| 1827 | ) |
| 1828 | def test_valid_yes(self, _): |
| 1829 | self.assertTrue(query_yes_no("?", None)) |
| 1830 | |
| 1831 | @mock.patch("updateHostsFile.input", side_effect=["foo", "yes", "foo", "no"]) |
| 1832 | def test_invalid_then_valid(self, _): |
nothing calls this directly
no test coverage detected