tests/testthat/test-copy-to.R

test_that("`auto_copy()` is a no-op when they share the same source", {
  df1 <- tibble(x = 1)
  df2 <- tibble(x = 2)

  expect_identical(auto_copy(df1, df2), df2)
})

test_that("`auto_copy()` throws an informative error on different sources (#6798)", {
  df <- tibble(x = 1)

  expect_snapshot(error = TRUE, {
    auto_copy(df, NULL)
  })
})
tidyverse/dplyr documentation built on Feb. 13, 2024, 11:18 p.m.