Skip to content

Commit

Permalink
feat: Add my_first_fcn to welcome new users
Browse files Browse the repository at this point in the history
- Create new function my_first_fcn()
- Add corresponding test
- Resolves #1839
  • Loading branch information
luenhchang committed Dec 4, 2024
1 parent 6b77c1a commit 7c2ddc8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
11 changes: 11 additions & 0 deletions R/my_first_fcn.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#' My First Function
#'
#' This function outputs a welcome message for onboarding purposes.
#'
#' @return A string with a welcome message.
#' @export
#'
my_first_fcn <- function() {
"Welcome to the admiral family!"
}

5 changes: 5 additions & 0 deletions tests/testthat/test-my_first_fcn.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test_that("my_first_fcn works correctly", {
result <- my_first_fcn()
expect_type(result, "character") # Test that the output is a string
expect_equal(result, "Welcome to the admiral family!") # Test the exact content
})

0 comments on commit 7c2ddc8

Please sign in to comment.