You can either check for the presence of names (leaving expected
blank), specific names (by supplying a vector of names), or absence of
names (with NULL).
Usage
expect_named(
  object,
  expected,
  ignore.order = FALSE,
  ignore.case = FALSE,
  info = NULL,
  label = NULL
)Arguments
- object
- Object to test. - Supports limited unquoting to make it easier to generate readable failures within a function or for loop. See quasi_label for more details. 
- expected
- Character vector of expected names. Leave missing to match any names. Use - NULLto check for absence of names.
- ignore.order
- If - TRUE, sorts names before comparing to ignore the effect of order.
- ignore.case
- If - TRUE, lowercases all names to ignore the effect of case.
- info
- Extra information to be included in the message. This argument is soft-deprecated and should not be used in new code. Instead see alternatives in quasi_label. 
- label
- Used to customise failure messages. For expert use only. 
See also
Other expectations:
comparison-expectations,
equality-expectations,
expect_error(),
expect_length(),
expect_match(),
expect_null(),
expect_output(),
expect_reference(),
expect_silent(),
inheritance-expectations,
logical-expectations
