Open
Description
Line 42 in 8d40528
Recent update of {waldo} to drop {tibble} as a required package caused this test to break for us (because now {tibble} needs to be included intentionally for testing).
The failure mode is pretty opaque:
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure (test-file.R:42:7): file_info: can be subset as a tibble ────────────
`x` inherits from 'data.frame' not 'tbl_df'.
Suggestions:
skip_if_not_installed("tibble")
- Write
requireNamespace("tibble")
clearly in the test body to make the connection to {tibble} crystal clear - Use
withr::local_options(list(fs.use_tibble=FALSE))
to make this test independent of {tibble}:
Lines 135 to 139 in 8d40528