Skip to content

Commit

Permalink
Export the core function, add testthat as suggested dep
Browse files Browse the repository at this point in the history
  • Loading branch information
cicdguy committed Dec 6, 2023
1 parent ee94e58 commit b18bedf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ License: Apache License (>= 2)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Suggests: testthat (>= 3.2.0)
Config/testthat/edition: 3
Config/testthat/parallel: true
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Generated by roxygen2: do not edit by hand

export(hello)
1 change: 1 addition & 0 deletions R/hello.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#'
#' @param name The name of the entity to greet.
#' @return A greeting as a string.
#' @export
#' @examples
#' hello("E.T.")
hello <- function(name) {
Expand Down

0 comments on commit b18bedf

Please sign in to comment.