Skip to content

Commit

Permalink
Update scalatest-funspec to 3.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward-bot authored and xuwei-k committed Aug 13, 2024
1 parent 00d21d6 commit b0762a8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you are using [``ScalaCheck``](https://github.com/typelevel/scalacheck), add

```scala
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test
"org.scalacheck" %% "scalacheck" % "1.18.0" % Test
)

doctestTestFramework := DoctestTestFramework.ScalaCheck // Default value for doctestTestFramework
Expand All @@ -40,8 +40,8 @@ If you are using [``ScalaTest``](https://github.com/scalatest/scalatest), add th
// ScalaTest 3.2
// ScalaTest 3.2 has been modularized. sbt-doctest generates tests using FunSpec.
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test
)

// ScalaTest 3.1
Expand Down Expand Up @@ -132,7 +132,7 @@ shown in the example below which uses ``uTest`` with property checks, which requ
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest" % "3.0.9" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test
"org.scalacheck" %% "scalacheck" % "1.18.0" % Test
)

doctestTestFramework := DoctestTestFramework.MicroTest
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ lazy val root = (project in file(".")).settings(
"org.apache.commons" % "commons-lang3" % "3.16.0",
"org.scalameta" %% "scalameta" % "4.9.7",
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
"org.specs2" %% "specs2-scalacheck" % "4.20.8" % Test,
"io.monix" %% "minitest-laws" % "2.9.6" % Test
),
Expand Down
6 changes: 3 additions & 3 deletions src/sbt-test/sbt-doctest/html-entities/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Test / scalacOptions -= "-Ywarn-dead-code"
// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.0" % Test,
"io.monix" %% "minitest-laws" % "2.9.6" % Test,
"org.specs2" %% "specs2-scalacheck" % "4.20.8" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test
Expand Down
6 changes: 3 additions & 3 deletions src/sbt-test/sbt-doctest/only-code-blocks/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Test / scalacOptions -= "-Ywarn-dead-code"
// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.0" % Test,
"org.specs2" %% "specs2-scalacheck" % "4.20.8" % Test,
"io.monix" %% "minitest-laws" % "2.9.6" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-doctest/scala-3/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
scalaVersion := "3.3.3"

libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.17.0" % Test
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.18.0" % Test
6 changes: 3 additions & 3 deletions src/sbt-test/sbt-doctest/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Test / scalacOptions -= "-Ywarn-dead-code"
// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.0" % Test,
"io.monix" %% "minitest-laws" % "2.9.6" % Test,
"org.specs2" %% "specs2-scalacheck" % "4.20.8" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test
Expand Down

0 comments on commit b0762a8

Please sign in to comment.