Port tests/test-quick

This commit is contained in:
Eugene Yokota 2016-03-29 02:39:54 -04:00
parent ee17a8586c
commit 259b6ccb17
2 changed files with 5 additions and 11 deletions

View File

@ -0,0 +1,5 @@
lazy val root = (project in file(".")).
settings(
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % Test,
parallelExecution in test := false
)

View File

@ -1,11 +0,0 @@
import sbt._
import Keys._
import Defaults._
import Import._
object B extends Build {
lazy val root = Project("root", file("."), settings = defaultSettings ++ Seq(
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test",
parallelExecution in test := false
))
}