tests/testthat/test-pystr_lower.R

library(pystr)
context("pystr_lower")

test_that("it converts to lowercase", {
  expect_equal(pystr_lower("HELLO!"), "hello!")
})

test_that("it works with a character vector", {
  expect_equal(pystr_lower(c("HELLO!", "hellO")), c("hello!", "hello"))
})

Try the pystr package in your browser

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

pystr documentation built on April 15, 2017, 12:30 a.m.