-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add my_first_fcn to welcome new users
- Create new function my_first_fcn() - Add corresponding test - Resolves #1839
- Loading branch information
1 parent
6b77c1a
commit 7c2ddc8
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}) |