tests/testthat/test-pystr_isspace.R

library(pystr)
context("pystr_isspace")

test_that("it returns true if there's only spaces", {
  expect_true(pystr_isspace("   "))
})

test_that("if returns false if there's something other than a space", {
  expect_false(pystr_isspace("  a  "))
})

test_that("it returns false for an empty string", {
  expect_false(pystr_isspace(""))
})

test_that("it works with a character vector", {
  expect_equal(pystr_isspace(c("   ", "hi")), c(TRUE, FALSE))
})
nicolewhite/pystr documentation built on May 23, 2019, 5:09 p.m.