inst/examples/boundary/tests/testthat-fix/test-is_adult.R

test_that("is_adult returns TRUE for adults", {
  expect_true(is_adult(25))
})

test_that("is_adult returns FALSE for minors", {
  expect_false(is_adult(10))
})

test_that("is_adult returns TRUE at the boundary age", {
  expect_true(is_adult(18))
})

Try the muttest package in your browser

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

muttest documentation built on July 21, 2026, 5:09 p.m.