View source: R/expect-vector.R
| expect_vector | R Documentation |
expect_vector() is a thin wrapper around vctrs::vec_assert(), converting
the results of that function in to the expectations used by testthat. This
means that it used the vctrs of ptype (prototype) and size. See
details in https://vctrs.r-lib.org/articles/type-size.html
expect_vector(object, ptype = NULL, size = NULL)
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. |
ptype |
(Optional) Vector prototype to test against. Should be a size-0 (empty) generalised vector. |
size |
(Optional) Size to check for. |
expect_vector(1:10, ptype = integer(), size = 10)
show_failure(expect_vector(1:10, ptype = integer(), size = 5))
show_failure(expect_vector(1:10, ptype = character(), size = 5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.