This file is indexed.

/usr/share/doc/r-cran-igraph/tests/testthat/test_bug-1032819.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("Bug 1032819")

test_that("VF2 isomorphism considers colors", {
  library(igraph)
  g <- make_full_graph(3)
  path <- make_ring(3, circular=F)
  V(g)$color <- c(1,1,2)
  V(path)$color <- c(1,2,1)
  n <- count_subgraph_isomorphisms(path, g, method = "vf2")
  expect_that(n, equals(2))
})