Releases: LudvigOlsen/xpectr
xpectr 0.4.3
Due to not fixing some non-critical errors before the given deadline, xpectr
was shortly removed from CRAN
. This release brings it back online :-)
-
Fixes
tidyselect
-related warnings. -
Fixes a few tests due to changes in error messages in the tested functions.
xpectr 0.4.1
- Prepares package for checkmate 2.1.0
xpectr 0.4.0
-
wrapStringAddin()
now wraps short strings inpaste0()
as well. Previously, strings that were too short to be split were not wrapped. -
Adds
insertExpectationsCopyEnvAddin()
addin. Same asinsertExpectationsAddin()
but where code is evaluated in a deep copy of the parent environment. This is especially useful when testing a function that alters non-local variables and has side effects (error/warnings/messages). -
Multiple functions now allow working on a deep copy of the environment (see new
copy_env
argument). This is useful when testing a function that alters non-local variables. It is disabled by default to save memory. -
gxs_function()
now allows parallelization of the expectation generation process. Requires a backend, as setup withdoParallel::registerDoParallel(4)
. Remember to setparallel = TRUE
when callinggxs_function()
. -
strip()
andstrip_msg()
now strips ANSI control sequences by default. -
strip()
andstrip_msg()
can now make the strings lowercase (disabled by default). -
capture_side_effects()
disablescrayon
locally before evaluating the expression (by default). Avoids ANSI control sequences in messages. -
capture_parse_eval_side_effects()
now has the same options ascapture_side_effects()
. -
Bug fix:
"Assigned data "NULL" must be compatible with existing data."
xpectr 0.3.0
-
Breaking:
element_classes()
only returns the first class string per element. -
Adds
navigateTestFileAddin()
addin for opening test file from string name. E.g. when runningtestthat
in the build window, copy the filename and line number of the failed test, e.g.test_x.R:5:
, and run the addin. It will then open/tests/testthat/test_x.R
at line5
. -
Adds test of
class
attribute for errors. -
Extracts error message with
conditionMessage()
instead of$message
. -
Adds
indentation = 2
to generated code frominitializeGXSFunctionAddin()
. -
Bug fix: Does not check symmetry for
table
objects.
xpectr 0.2.0
-
Adds
initializeGXSFunctionAddin()
addin for initializing agxs_function()
call for a selected function. -
Adds
initializeTestthatAddin()
addin for insertingtestthat::test_that()
chunk. -
gxs_function()
gets argumentextra_combinations
for manually adding extra combinations of argument values. In some simple cases, this can help us avoid multiple calls togxs_function()
with different baseline values. -
The
Changed from baseline:
comment adds the changed value when only one argument was changed. This makes it faster to see what is tested. -
Tests are now properly ordered as the specified
args_values
.
xpectr 0.1.1
-
capture_side_effects()
gains argumentreset_seed
. Whether to reset the random state on exit (default:FALSE
). -
Bug fix: When generating expectations for expressions with warnings and/or messages, the random state is reset after capturing them, before evaluating the expression for its output.
-
Bug fix: Escapes quotation marks in error messages.
-
All
data.frame()
calls explicitly setsstringsAsFactors
to ensure compatibility withr-devel
.
xpectr 0.1.0
- First CRAN submission.
- Main functions are
gxs_selection()
andgxs_function()
.
xpectr 0.0.1
This is the initial (GitHub only) release of xpectr
.