This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_dominator.tree.R is in r-cran-igraph 0.7.1-1.

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
17
18
19
20
21
context("dominator.tree")

test_that("dominator.tree works", {
  library(igraph)
  g <- graph.formula(R-+A:B:C, A-+D, B-+A:D:E, C-+F:G, D-+L,
                     E-+H, F-+I, G-+I:J, H-+E:K, I-+K, J-+I,
                     K-+I:R, L-+H)
  dtree <- dominator.tree(g, root="R")

  dtree$dom <- V(g)$name[ dtree$dom ]
  dtree$leftout <- V(g)$name[ dtree$leftout ]
  expect_that(dtree$dom, equals(c("R", "R", "R", "R", "R", "C", "C",
                                  "D", "R", "R", "G", "R")))
  expect_that(dtree$leftout, equals(character()))
  expect_that(get.edgelist(dtree$domtree),
              equals(structure(c("R", "R", "R", "R", "R", "C", "C",
                                 "D", "R", "R", "G", "R", "A", "B",
                                 "C", "D", "E", "F", "G", "L", "H",
                                 "I", "J", "K"), .Dim = c(12L, 2L))))

})