You can test for TRUE
or FALSE
using expect_true
and expect_false
respectively. For completeness, it would be nice to have expect_na
for testing for missing values.
At the moment, you can do this with expect_equal(x, NA)
, but this requires a little care since different NA
s are treated as different. For example expect_equal(NA, NA_character_)
will fail. expect_na
should treat them as the same (or have an argument to specify whether or not they should be considered the same).
What would you expect expect_na(c(NA, TRUE))
to do?
In my opinion
NA
, NA_real_
, etc.) should pass.any
or all
, or use the more general expect_equal
. The alternate behaviour is to work like if
and throw a warning
the condition has length > 1 and only the first element will be used
I don't think that this is right though. It's easier to work with if tests simply pass or fail rather than throw warnings.
list(NA)
and data.frame(NA)
should fail. "NA"
should fail. You might need to be careful about coercing to logical.c(na = NA)
and structure(NA, class = "whatever")
and matrix(NA)
should pass. (Be careful about testing with identical
.)expect_true
, expect_false
, and expect_na
form a triumvirate, so you need to make sure that the behaviour is consistent across all three functions.
Hmmm, if expect_true
, expect_false
and expect_na
form a triumvirate, then the definition of expect_na
should use identical(x, NA)
Maybe identical(x, NA) || identical(x, NA_real_) || identical(x,
NA_character_) || identical(x, NA_integer_) || identical(x, NA_complex_)
then.
Though an option for all three to ignore differences in attributes would be
nice. Possibly worth looking at is_identical_to_na in assertive.base as a
parallel.
On 25 September 2015 at 14:52, Hadley Wickham [email protected]
wrote:
Hmmm, if expect_true, expect_false and expect_na form a triumvirate, then
the definition of expect_na should use identical(x, NA)—
Reply to this email directly or view it on GitHub
https://github.com/hadley/testthat/issues/291#issuecomment-143194727.
Regards,
Richie
Learning R http://shop.oreilly.com/product/0636920028352.do
4dpiecharts.com
That just doesn't feel terribly compelling/systematic to me. You might as well do expect_equal(is.na(x), TRUE)
Yes, you can always use expect_equal
, so this feature is pure syntactic sugar (just like expect_true
). I think it's useful sugar though - testing weird edge cases is important so having an NA
return value is (or should be) moderately common.
In that case I think you'd be better testing the type of the NA value too.
Most helpful comment
Yes, you can always use
expect_equal
, so this feature is pure syntactic sugar (just likeexpect_true
). I think it's useful sugar though - testing weird edge cases is important so having anNA
return value is (or should be) moderately common.