testthat::context() is deprecated in the 3rd edition, but it's always called here:
Should that simply be escaped?
if (testthat::edition_get() < 3) context(test_context)
Or given the current version requirement on testthat, more robustly:
if (packageVersion("testthat") < "3.0.0" || testthat::edition_get() < 3) context(test_context)
Happy to file a PR for whatever's the desired behavior.
testthat::context()is deprecated in the 3rd edition, but it's always called here:DBItest/R/run.R
Line 15 in e9286cb
Should that simply be escaped?
Or given the current version requirement on testthat, more robustly:
Happy to file a PR for whatever's the desired behavior.