Nothing
test_that("Species are not conspecific", {
descendants <- c("bird_a", "bird_b", "bird_c")
expect_false(
all_descendants_conspecific(descendants = descendants)
)
})
test_that("Species are conspecific", {
descendants <- c("bird_a_1", "bird_a_2", "bird_a_3")
expect_true(
all_descendants_conspecific(descendants = descendants)
)
})
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.