/tester

Test R-package workflow

Primary LanguageR

tester

The goal of tester is to establish a coherent workflow for building R-packages. The tester package itself is best used as a doormat to the home that the R-community built.

Installation

You can install the released version of tester from CRAN with:

install.packages("tester")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("threadingdata/tester")

Basic examples

library(tester)
## basic example code

Say Hello!

hello('you spawn of Satan')
#> [1] "Hello, you spawn of Satan!"

Say Goodbye!

goodbye('you filthy animal')
#> [1] "Adios, you filthy animal!"

Say Hello & Goodbye!

hello_goodbye('get off my lawn')
#> [1] "Hello, get off my lawn!"
#> [1] "Adios, get off my lawn!"
#> [1] "Hello, get off my lawn! and adios, get off my lawn!"