Port tests/it

This commit is contained in:
Eugene Yokota 2016-03-29 02:25:31 -04:00
parent 248766afac
commit ef511d7582
2 changed files with 8 additions and 15 deletions

View File

@ -0,0 +1,8 @@
lazy val root = (project in file(".")).
configs(IntegrationTest).
settings(
Defaults.itSettings,
libraryDependencies += specs
)
lazy val specs = "org.specs2" % "specs2_2.10" % "1.12.3" % IntegrationTest

View File

@ -1,15 +0,0 @@
import sbt._
import Keys._
import Import._
object B extends Build
{
lazy val IntegrationTest = config("it") extend(Test)
lazy val root =
Project("root", file("."))
.configs( IntegrationTest )
.settings( Defaults.itSettings : _*)
.settings( libraryDependencies += specs )
lazy val specs = "org.specs2" % "specs2_2.10" % "1.12.3" % "test"
}