Skip to content

Commit aa5ac35

Browse files
committed
clear up R CMD CHECK
1 parent 2710f02 commit aa5ac35

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: container
2-
Title: Sandbox for a postprocessor container.
2+
Title: Sandbox for a postprocessor object
33
Version: 0.0.0.9000
44
Authors@R: c(
55
person("Simon", "Couch", , "[email protected]", role = "aut"),
@@ -8,7 +8,7 @@ Authors@R: c(
88
person("Max", "Kuhn", , "[email protected]", role = c("aut", "cre")),
99
person(given = "Posit Software, PBC", role = c("cph", "fnd"))
1010
)
11-
Description: Sandbox for a postprocessor container.
11+
Description: Sandbox for a postprocessor object.
1212
License: MIT + file LICENSE
1313
Suggests:
1414
testthat (>= 3.0.0)

NAMESPACE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# Generated by roxygen2: do not edit by hand
22

33
import(rlang)
4+
importFrom(cli,cli_abort)
5+
importFrom(cli,cli_inform)
6+
importFrom(cli,cli_warn)

R/container-package.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#' @import rlang
2+
#' @importFrom cli cli_abort cli_warn cli_inform
23
#' @keywords internal
34
"_PACKAGE"
45

man/container-package.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test-placeholder.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test_that("multiplication works", {
2+
expect_equal(2 * 2, 4)
3+
})

0 commit comments

Comments
 (0)