Skip to content

Commit

Permalink
Merge pull request #161 from poissonconsulting/main
Browse files Browse the repository at this point in the history
include blank test so R-CMD check doesnt fail on CI
  • Loading branch information
sebdalgarno authored Feb 9, 2024
2 parents b2d85e2 + 5f9042f commit af2308e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Suggests:
markdown,
RColorBrewer,
rsconnect,
testthat,
testthat (>= 3.0.0),
ssddata
VignetteBuilder:
knitr
Expand All @@ -56,3 +56,4 @@ Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Config/testthat/edition: 3
8 changes: 8 additions & 0 deletions tests/testthat.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# This file is part of the standard setup for testthat.
# It is recommended that you do not modify it.
#
# Where should you do additional test configuration?
# Learn more about the roles of various files in:
# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
# * https://testthat.r-lib.org/articles/special-files.html

library(testthat)
library(shinyssdtools)

Expand Down
3 changes: 3 additions & 0 deletions tests/testthat/test-blank.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test_that("multiplication works", {
expect_equal(2 * 2, 4)
})

0 comments on commit af2308e

Please sign in to comment.