1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/test-path.R
\name{test_path}
\alias{test_path}
\title{Locate a file in the testing directory}
\usage{
test_path(...)
}
\arguments{
\item{...}{Character vectors giving path components.}
}
\value{
A character vector giving the path.
}
\description{
Many tests require some external file (e.g. a \code{.csv} if you're testing a
data import function) but the working directory varies depending on the way
that you're running the test (e.g. interactively, with \code{devtools::test()},
or with \verb{R CMD check}). \code{test_path()} understands these variations and
automatically generates a path relative to \code{tests/testthat}, regardless of
where that directory might reside relative to the current working directory.
}
\examples{
\dontrun{
test_path("foo.csv")
test_path("data", "foo.csv")
}
}
|