diff --git a/tests/testthat/test-my_first_fcn.R b/tests/testthat/test-my_first_fcn.R new file mode 100644 index 000000000..1d4932383 --- /dev/null +++ b/tests/testthat/test-my_first_fcn.R @@ -0,0 +1,9 @@ +# my_first_fcn ---- +## Test 1: ---- +test_that("multiplication works", { + expected_output <- "Welcome to the admiral family!" + + actual_output <- my_first_fcn() + + expect_equal(expected_output, actual_output) +})