From 2f80d009e41e2d901540aa51ad810c85433b8110 Mon Sep 17 00:00:00 2001 From: Danielle Callan Date: Sat, 9 Dec 2023 23:04:31 -0500 Subject: [PATCH] placeholder test and documentation --- R/app.R | 1 + man/corGraph.Rd | 3 +++ tests/testthat/test-functions.R | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 tests/testthat/test-functions.R diff --git a/R/app.R b/R/app.R index c307826..181448e 100644 --- a/R/app.R +++ b/R/app.R @@ -3,6 +3,7 @@ #' Launches the corGraph Shiny App #' #' @importFrom shiny shinyApp +#' @param ... arguments to pass to \code{shinyApp} #' @export corGraph <- function(...) { shiny::shinyApp(ui, server, ...) diff --git a/man/corGraph.Rd b/man/corGraph.Rd index a021076..5650041 100644 --- a/man/corGraph.Rd +++ b/man/corGraph.Rd @@ -6,6 +6,9 @@ \usage{ corGraph(...) } +\arguments{ +\item{...}{arguments to pass to \code{shinyApp}} +} \description{ Launches the corGraph Shiny App } diff --git a/tests/testthat/test-functions.R b/tests/testthat/test-functions.R new file mode 100644 index 0000000..6ba79ca --- /dev/null +++ b/tests/testthat/test-functions.R @@ -0,0 +1,3 @@ +test_that("placeholder", { + expect_equal(1, 1) +}) \ No newline at end of file