sbt plugin for scalaprops
sbt-scalaprops provides scalapropsOnly: InputKey[Unit]
command like testOnly
but more powerful.
powerful means not only test class names but also test method names and params.
project/scalaprops.sbt
addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.5.1")
build.sbt
scalapropsSettings
scalapropsVersion := "0.9.1"
or
scalapropsWithScalaz
scalapropsVersion := "0.9.1"
build.sbt
scalapropsCoreSettings
libraryDependencies += "com.github.scalaprops" %%% "scalaprops" % "0.9.1" % "test"
or
scalapropsCoreSettings
val scalapropsVersion = "0.9.1"
libraryDependencies += "com.github.scalaprops" %%% "scalaprops" % scalapropsVersion % "test"
libraryDependencies += "com.github.scalaprops" %%% "scalaprops-scalaz" % scalapropsVersion % "test"