Changelog
Source:NEWS.md
testex 0.2.0
CRAN release: 2024-04-14
Breaking Changes
Documentation syntax changes. Documentation will be need to be re-
roxygenize’d or otherwise updated.
-
Changes syntax of tests to minimize reliance on
testexnamespace consistency across versions. Instead of usingtestex(with_srcref(..))andtestthat_block(test_that(.., with_srcref(..))), both interfaces are now handled viatestex()with an addedstyleparameter:testex(style = "testthat", srcref = "fn.R:10:11", { code })This syntax is intended to be more resilient to changes to keep your tests from relying too heavily on an unchanging
testexfunction interface.
New Features
-
Adds configuration (
Config/testex/options) field"version", which is automatically updated when a newer version oftestexis first used.This field is checked to decide whether the currently loaded version of
testexis capable of re-running your tests.Currently, a conservative approach is taken. If there is a version mismatch,
testexwill suggest updating when run independently using a testing framework and will disabletestextesting duringR CMD checkto avoid causing downstream test failures as the API changes. However, this means thattestextests will be ineffective if your package is out-of-date with the releasedtestexversion onCRANPast a
v1.0.0release, this behavior will be relaxed to check for a compatible major version.