R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname = find.package("RSauceLabs"), pkgname = "RSauceLabs"){
  op <- options()
  op.RSauceLabs <- list(

  )
  toset <- !(names(op.RSauceLabs) %in% names(op))
  if(any(toset)) options(op.RSauceLabs[toset])
  invisible()
}
utils::globalVariables("supported_backend_version") # spurious message

Try the RSauceLabs package in your browser

Any scripts or data that you put into this service are public.

RSauceLabs documentation built on May 2, 2019, 2:08 a.m.