Does code return a vector with the specified length?

expect_length(object, n)

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.

n

Expected length.

See also

Examples

expect_length(1, 1) expect_length(1:10, 10) if (FALSE) { expect_length(1:10, 1) }