def test_request_retry_excps_func_failed():
    assert not mv_request_retry_excps_func(excp=Exception)
def test_request_retry_excps_func_connectionerror_remotedisconnected():
    assert mv_request_retry_excps_func(
        excp=requests.exceptions.ConnectionError('RemoteDisconnected'))
def test_request_retry_excps_func_connectionerror_connectionreseterror():
    assert mv_request_retry_excps_func(
        excp=requests.exceptions.ConnectionError('ConnectionResetError'))
def test_request_retry_excps_func_connectionerror_failed():
    assert not mv_request_retry_excps_func(
        excp=requests.exceptions.ConnectionError)