This file is indexed.

/usr/share/doc/r-cran-dplyr/tests/testthat/test-internals.r is in r-cran-dplyr 0.7.4-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
context("internals")

test_that("comparisons<REALSXP> works as expected (#275)", {
  res <- test_comparisons()
  expect_true(all(res))
})

test_that("join_match() works as expected", {
  res <- test_matches()
  expect_true(all(unlist(res)))
})

test_that("wrapping of length values works as expected", {
  res <- test_length_wrap()
  expect_true(all(res))
})