Nothing
test_that("get_github_url_db works", {
#### Prepare daa ####
db <- rworkflows::biocpkgtools_db
db$url_github <- NULL
#### When db=NULL ####
testthat::expect_null(get_github_url_db(db = NULL))
#### When all columns provided ####
testthat::expect_equal(
sum(!is.na(get_github_url_db(db = db))),
39
)
#### When only some columns provided ####
db$BugReports <- NULL
db$git_url <- NULL
testthat::expect_equal(
sum(!is.na(get_github_url_db(db = db))),
25
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.