(
without_warnings, httpbin, fetch_update_mock
)
| 116 | |
| 117 | |
| 118 | def test_check_updates_disable_warnings( |
| 119 | without_warnings, httpbin, fetch_update_mock |
| 120 | ): |
| 121 | r = http(httpbin + '/get', env=without_warnings) |
| 122 | assert not fetch_update_mock.called |
| 123 | assert not check_update_warnings(r.stderr) |
| 124 | |
| 125 | |
| 126 | def test_check_updates_first_invocation( |
nothing calls this directly
no test coverage detected