test_that("recipe works", { skip_if_not_installed("recipes") skip_if_not_installed("parsnip") skip_if_not_installed("workflows") skip_if_not_installed("tidypredict") rec_spec <- recipes::recipe(mpg ~ ., data = mtcars) %>% recipes::step_impute_knn(recipes::all_numeric_predictors()) lm_spec <- parsnip::linear_reg() wf_spec <- workflows::workflow(rec_spec, lm_spec) wf_fit <- parsnip::fit(wf_spec, mtcars) expect_snapshot( error = TRUE, orbital(wf_fit) ) }) test_that("recipe works with skip argument", { skip_if_not_installed("recipes") skip_if_not_installed("parsnip") skip_if_not_installed("workflows") skip_if_not_installed("tidypredict") mtcars <- dplyr::as_tibble(mtcars) rec <- recipes::recipe(mpg ~ ., data = mtcars) %>% recipes::step_center(recipes::all_predictors(), skip = TRUE) %>% recipes::step_scale(recipes::all_predictors()) %>% recipes::prep() res <- dplyr::mutate(mtcars, !!!orbital_inline(orbital(rec))) exp <- recipes::bake(rec, new_data = mtcars) exp <- exp[names(res)] expect_equal(res, exp) })