File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,12 +10,17 @@ README_files/
1010RcppTskit /** /.quarto /
1111RcppTskit /cran-comments.html
1212RcppTskit /cran-comments_files /
13+ RcppTskit /covr /
1314RcppTskit /inst /doc
15+ RcppTskit /src /* .gcda
16+ RcppTskit /src /* .gcno
1417RcppTskit /src /* .dll *
1518RcppTskit /src /* .o
1619RcppTskit /src /* .so
1720RcppTskit /src /Makevars
1821RcppTskit /src /Makevars.win
22+ RcppTskit /src /** /* .gcda
23+ RcppTskit /src /** /* .gcno
1924RcppTskit /src /tskit /* .o
2025RcppTskit /vignettes /* .R
2126RcppTskit /vignettes /* .html
Original file line number Diff line number Diff line change 1313^cran-comments\.html$
1414^cran-comments\.md$
1515^cran-comments_files$
16+ ^covr$
1617^inst/examples/create_test\.trees\.R$
1718^inst/examples/create_test\.trees\.py$
1819^inst/examples/explore_reticulate\.R$
1920^inst/examples/explore_slendr\.R$
2021^notes_pkg_dev\.Rmd$
2122^pkg_dev_notes\.md$
23+ ^src/.*\.gcda$
24+ ^src/.*\.gcno$
2225^test\.trees$
2326^tests/testthat/_snaps$
2427^tools/clang-tidy\.py$
Original file line number Diff line number Diff line change @@ -509,6 +509,14 @@ test_that("node_table_add_row wrapper expands the table collection and handles i
509509 m_before_raw + 3L
510510 )
511511
512+ expect_error(
513+ tc $ node_table_add_row(flags = - 1L ),
514+ regexp = " flags must be a non-NA zero or positive integer scalar!"
515+ )
516+ expect_error(
517+ tc $ node_table_add_row(time = NA_real_ ),
518+ regexp = " time must be a non-NA numeric scalar!"
519+ )
512520 expect_error(
513521 tc $ node_table_add_row(population = NA_integer_ ),
514522 regexp = " population must be -1L, NULL, or a non-NA integer scalar!"
You can’t perform that action at this time.
0 commit comments