This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_minimum.size.separators.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
22
23
context("minimum.size.separators")

test_that("minimum.size.separators works", {

  library(igraph)

  camp <- graph.formula(Harry:Steve:Don:Bert - Harry:Steve:Don:Bert,
                        Pam:Brazey:Carol:Pat - Pam:Brazey:Carol:Pat,
                        Holly   - Carol:Pat:Pam:Jennie:Bill,
                        Bill    - Pauline:Michael:Lee:Holly,
                        Pauline - Bill:Jennie:Ann,
                        Jennie  - Holly:Michael:Lee:Ann:Pauline,
                        Michael - Bill:Jennie:Ann:Lee:John,
                        Ann     - Michael:Jennie:Pauline,
                        Lee     - Michael:Bill:Jennie,
                        Gery    - Pat:Steve:Russ:John,
                        Russ    - Steve:Bert:Gery:John,
                        John    - Gery:Russ:Michael)
  camp <- simplify(camp)
  sep <- lapply(minimum.size.separators(camp), function(x) V(camp)[x])
  expect_that(all(sapply(sep, is.minimal.separator, graph=camp)), is_true())

})