Skip to content

Commit

Permalink
fix rogue backslash in one vigtnette
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Aug 25, 2022
1 parent 2a53678 commit bfea746
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: autotest
Title: Automatic Package Testing
Version: 0.0.2.194
Version: 0.0.2.195
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/autotest",
"issueTracker": "https://github.com/ropensci-review-tools/autotest/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.0.2.194",
"version": "0.0.2.195",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
8 changes: 6 additions & 2 deletions vignettes/autotest-control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ author:
- "Mark Padgham"
date: "`r Sys.Date()`"
output:
md_document:
variant: markdown_github
html_document:
toc: true
toc_float: true
number_sections: false
theme: flatly
always_allow_html: true
vignette: >
%\VignetteIndexEntry{Control of tests}
%\VignetteEngine{knitr::rmarkdown}
Expand Down Expand Up @@ -257,7 +260,7 @@ This parameter must be an object of class `autotest_package`, as returned by
either the
[`autotest_types()`](https://docs.ropensci.org/autotest/reference/autotest_types.html)]
or
[`autotest_package()](https://docs.ropensci.org/autotest/reference/autotest_package.html)
[`autotest_package()`](https://docs.ropensci.org/autotest/reference/autotest_package.html)
functions. The former of these is the function which specifies all unique
tests, and so returns a relatively small `tibble` of `r nrow(autotest_types())`
rows. The following lines demonstrate how to switch off the list-column test
Expand Down Expand Up @@ -407,7 +410,8 @@ The two expectations shown above call the
[`autotest_package()`](https://docs.ropensci.org/autotest/reference/autotest_package.html)
function internally, and assert that the results follow the expected pattern.
There are also three additional [`testthat`](https://testthat.r-lib.org)
expectations which can be applied to pre-generated `autotest` objects, to allow for finer control over testing expectations. These are:
expectations which can be applied to pre-generated `autotest` objects, to allow
for finer control over testing expectations. These are:

- `expect_autotest_no_err` to expect no errors in results from `autotest_package()`;
- `expect_autotest_no_warn` to expect no warnings; and
Expand Down

0 comments on commit bfea746

Please sign in to comment.