Closed MichaelChirico closed 3 months ago
BTW, is there any meaningful difference to skip_if_not_installed()
?
BTW, is there any meaningful difference to
skip_if_not_installed()
?
skip_if_not_physically_installed
does not try to load the namespace of the package, in contrary to testthat::skip_if_not_installed
. Given that later in this test data.table::as.data.table
is called which does load the data.table namespace, there is no difference in the actual outcome of the two skip_if_not...
implementations.
Found in the other test_that() units here, missing from this 3rd