File tree Expand file tree Collapse file tree 6 files changed +10
-9
lines changed
src/sbt-test/basic/simple
src/sbt-test/basic/simple Expand file tree Collapse file tree 6 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -36,5 +36,5 @@ crossSbtVersions := Seq(
3636)
3737
3838libraryDependencies ++= Seq (
39- " org.scalatest" %% " scalatest" % " 3.0 .0"
39+ " org.scalatest" %% " scalatest" % " 3.1 .0"
4040)
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ trait ScriptedScalaTestSuite extends Suite {
6363 false ,
6464 false ,
6565 false ,
66+ false ,
6667 false
6768 )
6869 )
Original file line number Diff line number Diff line change 11import com .github .daniel .shuy .sbt .scripted .scalatest .ScriptedScalaTestSuiteMixin
22import org .scalatest .Assertions ._
3- import org .scalatest .WordSpec
3+ import org .scalatest .wordspec . AnyWordSpec
44
55lazy val testFailure = project
66 .in(file(" ." ))
@@ -18,7 +18,7 @@ lazy val testFailure = project
1818 scriptedBufferLog := false ,
1919
2020 scriptedScalaTestStacks := SbtScriptedScalaTest .FullStacks ,
21- scriptedScalaTestSpec := Some (new WordSpec with ScriptedScalaTestSuiteMixin {
21+ scriptedScalaTestSpec := Some (new AnyWordSpec with ScriptedScalaTestSuiteMixin {
2222 override val sbtState : State = state.value
2323
2424 " scripted" should {
Original file line number Diff line number Diff line change 11import com .github .daniel .shuy .sbt .scripted .scalatest .ScriptedScalaTestSuiteMixin
22import org .scalatest .Assertions ._
3- import org .scalatest .WordSpec
3+ import org .scalatest .wordspec . AnyWordSpec
44
55lazy val testBasicSimple = project
66 .in(file(" ." ))
77 .settings(
88 name := " test/basic/simple" ,
99
1010 scriptedScalaTestStacks := SbtScriptedScalaTest .FullStacks ,
11- scriptedScalaTestSpec := Some (new WordSpec with ScriptedScalaTestSuiteMixin {
11+ scriptedScalaTestSpec := Some (new AnyWordSpec with ScriptedScalaTestSuiteMixin {
1212 override val sbtState : State = state.value
1313
1414 " scripted test" should {
Original file line number Diff line number Diff line change 11import com .github .daniel .shuy .sbt .scripted .scalatest .ScriptedScalaTestSuiteMixin
22import org .scalatest .Assertions ._
3- import org .scalatest .WordSpec
3+ import org .scalatest .wordspec . AnyWordSpec
44
55lazy val testFailure = project
66 .in(file(" ." ))
@@ -18,7 +18,7 @@ lazy val testFailure = project
1818 scriptedBufferLog := false ,
1919
2020 scriptedScalaTestStacks := SbtScriptedScalaTest .FullStacks ,
21- scriptedScalaTestSpec := Some (new WordSpec with ScriptedScalaTestSuiteMixin {
21+ scriptedScalaTestSpec := Some (new AnyWordSpec with ScriptedScalaTestSuiteMixin {
2222 override val sbtState : State = state.value
2323
2424 " scripted" should {
Original file line number Diff line number Diff line change 11import com .github .daniel .shuy .sbt .scripted .scalatest .ScriptedScalaTestSuiteMixin
22import org .scalatest .Assertions ._
3- import org .scalatest .WordSpec
3+ import org .scalatest .wordspec . AnyWordSpec
44
55lazy val testBasicSimple = project
66 .in(file(" ." ))
77 .settings(
88 name := " test/basic/simple" ,
99
1010 scriptedScalaTestStacks := SbtScriptedScalaTest .FullStacks ,
11- scriptedScalaTestSpec := Some (new WordSpec with ScriptedScalaTestSuiteMixin {
11+ scriptedScalaTestSpec := Some (new AnyWordSpec with ScriptedScalaTestSuiteMixin {
1212 override val sbtState : State = state.value
1313
1414 " scripted test" should {
You can’t perform that action at this time.
0 commit comments