This file is indexed.

/usr/share/doc/r-cran-igraph/tests/testthat/test_delete.edges.R is in r-cran-igraph 1.1.2-2ubuntu3.

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
context("delete_edges")

test_that("delete_edges works", {
  library(igraph)
  g <- graph_from_literal(A:B:C - D:E:F, D-E-F)
  g2 <- delete_edges(g, E(g, P=c("D", "E")))
  expect_that(as.matrix(g2[]),
              is_equivalent_to(cbind(c(0,0,0,1,1,1), c(0,0,0,1,1,1),
                                     c(0,0,0,1,1,1), c(1,1,1,0,0,0),
                                     c(1,1,1,0,0,1), c(1,1,1,0,1,0))))
})