選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
367B

  1. context("test-tidyr_helpers")
  2. test_that("get_quos_names works", {
  3. expect_equivalent(get_quos_names(-x), "-x")
  4. expect_equivalent(get_quos_names(x:y), "x:y")
  5. expect_equivalent(get_quos_names(-x, -y, -z), c("-x", "-y", "-z"))
  6. })
  7. test_that("dput_parsers works", {
  8. expect_equal(dput_parser("x"), '"x"')
  9. expect_equal(dput_parser(c("x", "y")), 'c("x", "y")')
  10. })