tests/testthat/test-preflight.R

context("Preflight")

test_that("snapshot preflight tests catch common issues", {

  renv_tests_scope()

  libpath <- renv_paths_library()
  ensure_parent_directory(libpath)

  # library is a file, not directory
  file.create(libpath)
  expect_error(renv::snapshot(library = libpath))
  unlink(libpath)

  # project library does not exist
  expect_error(renv::snapshot(library = libpath))

  # arbitrary library does not exist
  expect_error(renv::snapshot(library = tempfile()))

})

test_that("renv warns when snapshotting missing dependencies", {
  skip_on_cran()
  renv_tests_scope("breakfast")
  renv::init()

  remove.packages("oatmeal")

  local({
    renv_scope_sink()
    expect_error(renv::snapshot())
  })

})
wnattt/renv documentation built on Dec. 23, 2021, 5:19 p.m.