tests/testthat/test-base-r.R

test_that("numeric", {
  expect_true(is.numeric(1))
  expect_true(is.numeric(integer(0)))
  expect_true(is.numeric(matrix(1L)))
  expect_true(is.numeric(array(1L)))
  expect_false(is.numeric(TRUE))
  expect_false(is.numeric(TRUE))
  expect_false(is.numeric(structure(TRUE, class = "numeric")))
  expect_true(is.numeric(structure(1, class = "numeric")))
  expect_false(is.numeric(structure(list(), class = "numeric")))
})

Try the extras package in your browser

Any scripts or data that you put into this service are public.

extras documentation built on May 31, 2023, 6:22 p.m.