Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (7 sloc) 302 Bytes
### Assignment : task1 ###
context("task1")
test_that("Marking of task 1", {
expect_true(exists("task1"), info = "task1() does not exist.")
expect_is(task1, "numeric", info = "task1 is not return a numeric value")
expect_equal(task1, c(pi, exp(1)), info = "task1 contains erroneous values")
})
You can’t perform that action at this time.