(
with_warnings, httpbin, fetch_update_mock
)
| 124 | |
| 125 | |
| 126 | def test_check_updates_first_invocation( |
| 127 | with_warnings, httpbin, fetch_update_mock |
| 128 | ): |
| 129 | r = http(httpbin + '/get', env=with_warnings) |
| 130 | assert fetch_update_mock.called |
| 131 | assert not check_update_warnings(r.stderr) |
| 132 | |
| 133 | |
| 134 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected