Function for downloading & testing url/internet connection according to CRAN policy Example solution strongly based on https://community.rstudio.com/t/internet-resources-should-fail-gracefully/49199/12 as suggested by kvasilopoulos
test_url(link, output, quiet = FALSE)
character vector with URL to check
character vector for output file name
logical vector (TRUE or FALSE) to be passed to curl_download function. FALSE by default
No return value, called for side effects to check for internet connection
# \donttest{
link = "http://httpbin.org/status/200"
output = tempfile()
test_url(link = link, output = output)
#> /tmp/RtmppvlOAU/file19cc2b47a776
# }