Add tests for R builds
This commit is contained in:
parent
69b268e6f7
commit
1de359f3e6
4 changed files with 505 additions and 0 deletions
19
test/testpkg/man/add_it.Rd
Normal file
19
test/testpkg/man/add_it.Rd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/testpkg.R
|
||||
\name{add_it}
|
||||
\alias{add_it}
|
||||
\title{Add it together}
|
||||
\usage{
|
||||
add_it(a, b)
|
||||
}
|
||||
\arguments{
|
||||
\item{a}{Number}
|
||||
|
||||
\item{b}{Number}
|
||||
}
|
||||
\value{
|
||||
Sum of numbers
|
||||
}
|
||||
\description{
|
||||
Add it together
|
||||
}
|
||||
17
test/testpkg/man/square_it.Rd
Normal file
17
test/testpkg/man/square_it.Rd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/testpkg.R
|
||||
\name{square_it}
|
||||
\alias{square_it}
|
||||
\title{Square it up}
|
||||
\usage{
|
||||
square_it(n)
|
||||
}
|
||||
\arguments{
|
||||
\item{n}{Integer}
|
||||
}
|
||||
\value{
|
||||
Square
|
||||
}
|
||||
\description{
|
||||
Square it up
|
||||
}
|
||||
19
test/testpkg/man/subtract_it.Rd
Normal file
19
test/testpkg/man/subtract_it.Rd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/testpkg.R
|
||||
\name{subtract_it}
|
||||
\alias{subtract_it}
|
||||
\title{Subtract it}
|
||||
\usage{
|
||||
subtract_it(a, b)
|
||||
}
|
||||
\arguments{
|
||||
\item{a}{Number}
|
||||
|
||||
\item{b}{Number}
|
||||
}
|
||||
\value{
|
||||
Difference of numbers
|
||||
}
|
||||
\description{
|
||||
Subtract it
|
||||
}
|
||||
14
test/testpkg/man/testpkg-package.Rd
Normal file
14
test/testpkg/man/testpkg-package.Rd
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/testpkg.R
|
||||
\docType{package}
|
||||
\name{testpkg-package}
|
||||
\alias{testpkg}
|
||||
\alias{testpkg-package}
|
||||
\title{testpkg: A Test Package}
|
||||
\description{
|
||||
A test package.
|
||||
}
|
||||
\author{
|
||||
\strong{Maintainer}: Test Pkg \email{test@test}
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue