-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
# this returns TRUE
expect_message(
data.frame(new = 18:22/100, old = 0.2) |>
add_headline_column(new, old, return_cols = c(x, y))
)
# even though this doesn't print a message
data.frame(new = 18:22/100, old = 0.2) |>
add_headline_column(new, old, return_cols = c(x, y))
# but this shows a message
capture_messages(
data.frame(new = 18:22/100, old = 0.2) |>
add_headline_column(
new, old,
return_cols = c(x, y)
)
)
Metadata
Metadata
Assignees
Labels
No labels