Nothing
testthat::test_that("delayed_choices constructors run without error", {
testthat::expect_no_error(all_choices())
testthat::expect_no_error(first_choice())
testthat::expect_no_error(last_choice())
testthat::expect_no_error(first_choices(4))
testthat::expect_no_error(last_choices(4))
})
testthat::test_that("first_choices and last_choices require n", {
testthat::expect_error(first_choices(), "argument \"n\" is missing")
testthat::expect_error(last_choices(), "argument \"n\" is missing")
})
testthat::test_that("delayed_choices constructors return functions", {
testthat::expect(is.function(all_choices()), "expecting function")
testthat::expect(is.function(first_choice()), "expecting function")
testthat::expect(is.function(last_choice()), "expecting function")
testthat::expect(is.function(first_choices(4)), "expecting function")
testthat::expect(is.function(last_choices(4)), "expecting function")
})
testthat::test_that("delayed_choices functions return appropriate subsets of atomic input data", {
testthat::expect_identical(all_choices()(letters), letters)
testthat::expect_identical(first_choice()(letters), letters[1L])
testthat::expect_identical(last_choice()(letters), letters[length(letters)])
testthat::expect_identical(first_choices(4)(letters), utils::head(letters, 4))
testthat::expect_identical(last_choices(4)(letters), utils::tail(letters, 4))
})
testthat::test_that("delayed_choices functions return passed NULL", {
testthat::expect_null(all_choices()(NULL))
testthat::expect_null(first_choice()(NULL))
testthat::expect_null(last_choice()(NULL))
testthat::expect_null(first_choices(4)(NULL))
testthat::expect_null(last_choices(4)(NULL))
})
testthat::test_that("delayed_choices functions return passed empty vector", {
testthat::expect_identical(all_choices()(character(0L)), character(0L))
testthat::expect_identical(first_choice()(character(0L)), character(0L))
testthat::expect_identical(last_choice()(character(0L)), character(0L))
testthat::expect_identical(first_choices(4)(character(0L)), character(0L))
testthat::expect_identical(last_choices(4)(character(0L)), character(0L))
})
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.