A catch all issue to keep track of which tests have been refactored/merged.
The Goal is to have one test file per R file at the end
PRs
test files without a corresponding R file (main branch, not considering unmerged PRs):
setwd("~/git/R_packages/rigraph/")
Rfiles <- list.files("R")
testfiles <- list.files("tests/testthat/",pattern = "test-*")
tested <- testfiles |> stringr::str_remove("^test-")
cat(testfiles[!tested%in%Rfiles],sep = "\n")
length(testfiles[!tested%in%Rfiles])
#> [1] 0
Created on 2025-02-28 with reprex v2.1.1
A catch all issue to keep track of which tests have been refactored/merged.
The Goal is to have one test file per R file at the end
PRs
flow.Rtest: merged and refactored flow.R tests #1675test-graph.adhesion.Rtest: merged and refactored orphaned test files #1724games.Rtest: merged and refactored games.R tests #1682test-dot.product.game.Rfix test-dot.product.game #1396make.Rtest: merged and refactored make.R tests #1685test-vs-es-quirks.Rtest: merged and refactored orphaned test files #1724indexing.Rtest: merged and refactored indexing.R tests #1687community.Rtest: merged and refactored community.R tests #1689test-contract.vertices.Rtest: merged and refactored orphaned test files #1724test-voronoi.Rtest: merged and refactored orphaned test files #1724conversion.R(merged withdata.frame.R) test: merged and refactored conversion.R tests #1701test-edgenames.Rtest: merged and refactored orphaned test files #1724components.Rtest: merged and refactored components.R tests #1702attributes.Rfeat: added proper support for adding attributes via data.frames #1716foreign.Rtest: merge all tests for foreign.R into one test file #1713topology.Rtest: merged and refactored topology.R tests #1720embedding.Rtest: merged and refactored embedding.R tests #1721iterators.Rtest: merged and refactored iterators.R and operators.R tests #1723operators.Rtest: merged and refactored iterators.R and operators.R tests #1723structural.properties.Rtest: merged and refactored structural.properties.R tests #1726other.Rtest: merged and refactored other.R tests #1727test files without a corresponding R file (main branch, not considering unmerged PRs):
Created on 2025-02-28 with reprex v2.1.1