glue
had breaking changes for whichexampletestr
needed to be fixed.
usethis
had breaking changes for whichexampletestr
needed to be fixed.
usethis
andpurrr
had breaking changes for whichexampletestr
needed to be fixed.
- Remove
ore
dependency.
- Hadn't fixed the
readr
vroom
thing in the test directory.
- Now that
readr
usesvroom
, reading withreadr
is safer withlazy = FALSE
.
- Remove
LazyData
fromDESCRIPTION
.
- Lighten dependencies by importing
strex
rather thanfilesstrings
.
clipr
should be inSuggests
.
- Integration with
roxytest
.
- Fix for
usethis
1.6.0 moving fromcat()
torlang::inform()
for messaging.
- Require bug-fixed
styler
v1.2.0.
- Fix some documentation typos.
- Move away from
rprojroot
tousethis::proj_*()
.
- Require necessary versions of
glue
andusethis
.
- Quick and dirty fix for CRAN mac. Better to come when the new version of usethis is released.
- Some calls to
tempdir()
needed to betempdir(check = TRUE)
.- This necessitates a dependency on R >= 3.5.0 (this is when the
check
option appeared intempdir()
).
- This necessitates a dependency on R >= 3.5.0 (this is when the
- A
pkgdown
site at https://rorynolan.github.io/exampletestr/index.html. - More vignettes.
- Better messages and warnings, in the style of the
usethis
package.
- Now depending appropriately on
usethis
instead of relying ondevtools
for things that are now implemented inusethis
.
- Enforce bug-fixed new versions of
styler
andfilesstrings
.
- The naming of created files is now less likely to cause conflicts. Now each file created ends with "examples".
- There's a new function
make_test_shell_fun()
for making test shells one function at a time. This is thanks to a suggestion by Lorenz Walthert: #6. - Created files are now optionally opened in the editor when they are created.
- The use of file paths is now more stable thanks to the
rprojroot
package.
exampletestr
now names its test files in the same way asusethis::use_test()
.
- The new R doesn't like it when the working directory is changed by running examples. This required a fix which this patch provides.
- Add
testthat::context()
to test shells. - Update for
filesstrings
v2.0.0.
- Fix issues with open text connections.
- The CITATION is now correct.
- The package has now passed peer review.
- Minor documentation improvement.
- There's no longer an error telling you to run
usethis::use_testthat()
, now this is just done for you.
- Add explicit LICENSE file to github.
- Publish to Wellcome Open Research.
- Fix to an error in DESCRIPTION.
- Minor documentation improvement.
- There is now the option to not put stuff in
expect_equal()
statements by default.
- The package now uses .Rd files to read the examples rather than
roxygen2
tags. - Comments in examples are handled better.
- Minor fix to vignette.
- First CRAN-worthy version.