tests/testthat/test-pystr_ljust.R

library(pystr)
context("pystr_ljust")

test_that("it uses spaces by default", {
  expect_equal(pystr_ljust("hello", 7), "hello  ")
})

test_that("it allows you to pass a fillchar", {
  expect_equal(pystr_ljust("hello", 7, "*"), "hello**")
})

test_that("it works with a character vector", {
  expect_equal(pystr_ljust(c("hello", "hi"), 7, "*"), c("hello**", "hi*****"))
})

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.