#check the creatingContestingValidator
test_that("check validator", {
expect_equal(validateCreatingContestants(3), NULL)
expect_error(validateCreatingContestants(3.2),"contestants MUST be a whole number greater than 1")
expect_error(validateCreatingContestants("a"), "contestants MUST be a whole number greater than 1")
expect_error(validateCreatingContestants(1), "contestants MUST be a whole number greater than 1")
expect_error(validateCreatingContestants(FALSE), "contestants MUST be a whole number greater than 1")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.