Revision 1f57c48a765ad60837ffed1fe0572c40f4b7a3de authored by hadley on 09 January 2015, 12:35:47 UTC, committed by hadley on 09 January 2015, 12:35:47 UTC
2 parent s 1c0e907 + 4801e3b
Raw File
testthat.R
library("testthat")
library("dplyr")

# Ensure database creation done before tests
library("Lahman")
has_lahman("sqlite")
if (identical(Sys.getenv("NOT_CRAN"), "true")) {
  has_lahman("postgresql")
}

test_check("dplyr")
back to top