tests/testthat/test-strings.R

# test-strings.R

test_that("Underscores are replaced with spaces and text is made title case", {
  expect_identical(spaceAndTitle("a_boy"), "A Boy")
  expect_identical(spaceAndTitle("god_is_good"), "God Is Good")
  expect_error(spaceAndTitle(999))
  expect_error(spaceAndTitle(NULL))
  expect_error(spaceAndTitle(TRUE))
  expect_false(identical(spaceAndTitle("hold_the_line_"), "Hold The Line "))
})
BroVic/raampGBV documentation built on Oct. 7, 2022, 11:06 p.m.