File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 99
1010| Plugin Version | SBT Version | ScalaTest Version |
1111| -------------- | ------------- | ----------------- |
12- | 1.x.x | 0.13.x, 1.x.x | 3.x.x |
12+ | 1.x.x | 0.13.x, 1.x.x | 3.0.x |
13+ | 2.x.x | 0.13.x, 1.x.x | 3.1.x+ |
1314
1415A SBT plugin to use [ ScalaTest] ( http://www.scalatest.org/ ) with scripted-plugin to test your SBT plugins
1516
@@ -147,15 +148,15 @@ Using SBT's Example in <http://www.scala-sbt.org/0.13/docs/Testing-sbt-plugins.h
147148``` scala
148149import com .github .daniel .shuy .sbt .scripted .scalatest .ScriptedScalaTestSuiteMixin
149150import org .scalatest .Assertions ._
150- import org .scalatest .WordSpec
151+ import org .scalatest .wordspec . AnyWordSpec
151152
152153lazy val root = (project in file(" ." ))
153154 .settings(
154155 version := " 0.1" ,
155156 scalaVersion := " 2.10.6" ,
156157 assemblyJarName in assembly := " foo.jar" ,
157158
158- scriptedScalaTestSpec := Some (new WordSpec with ScriptedScalaTestSuiteMixin {
159+ scriptedScalaTestSpec := Some (new AnyWordSpec with ScriptedScalaTestSuiteMixin {
159160 override val sbtState : State = state.value
160161
161162 " assembly" should {
You can’t perform that action at this time.
0 commit comments