Skip to content

Commit ab0ad7f

Browse files
committed
Merge branch 'cheeseng-funspec-module' into 3.1.x
2 parents e21f109 + c14aacc commit ab0ad7f

18 files changed

+4671
-4464
lines changed

project/GenScalaTestJS.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ object GenScalaTestJS {
210210
) ++
211211
copyDir("scalatest/src/main/scala/org/scalatest/enablers", "org/scalatest/enablers", targetDir, List.empty) ++
212212
copyDir("scalatest/src/main/scala/org/scalatest/funsuite", "org/scalatest/funsuite", targetDir, List.empty) ++
213+
copyDir("scalatest/src/main/scala/org/scalatest/funspec", "org/scalatest/funspec", targetDir, List.empty) ++
213214
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
214215
copyDir("scalatest/src/main/scala/org/scalatest/check", "org/scalatest/check", targetDir, List.empty) ++
215216
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,

project/GenScalaTestNative.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ object GenScalaTestNative {
205205
copyDir("scalatest/src/main/scala/org/scalatest/funsuite", "org/scalatest/funsuite", targetDir,
206206
asyncs("scalatest/src/main/scala/org/scalatest/funsuite")
207207
) ++
208+
copyDir("scalatest/src/main/scala/org/scalatest/funspec", "org/scalatest/funspec", targetDir,
209+
asyncs("scalatest/src/main/scala/org/scalatest/funspec")
210+
) ++
208211
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
209212
copyDir("scalatest/src/main/scala/org/scalatest/check", "org/scalatest/check", targetDir, List.empty) ++
210213
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,

project/scalatest.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ object ScalatestBuild extends Build {
703703
"org.scalatest.exceptions",
704704
"org.scalatest.fixture",
705705
"org.scalatest.funsuite",
706+
"org.scalatest.funspec",
706707
"org.scalatest.jmock",
707708
"org.scalatest.junit",
708709
"org.scalatest.matchers",
@@ -814,6 +815,7 @@ object ScalatestBuild extends Build {
814815
"org.scalatest.exceptions",
815816
"org.scalatest.fixture",
816817
"org.scalatest.funsuite",
818+
"org.scalatest.funspec",
817819
"org.scalatest.matchers",
818820
"org.scalatest.path",
819821
"org.scalatest.prop",
@@ -933,6 +935,7 @@ object ScalatestBuild extends Build {
933935
"org.scalatest.exceptions",
934936
"org.scalatest.fixture",
935937
"org.scalatest.funsuite",
938+
"org.scalatest.funspec",
936939
"org.scalatest.matchers",
937940
"org.scalatest.path",
938941
"org.scalatest.prop",
@@ -1037,6 +1040,7 @@ object ScalatestBuild extends Build {
10371040
"org.scalatest.exceptions",
10381041
"org.scalatest.fixture",
10391042
"org.scalatest.funsuite",
1043+
"org.scalatest.funspec",
10401044
"org.scalatest.jmock",
10411045
"org.scalatest.junit",
10421046
"org.scalatest.matchers",
@@ -1111,6 +1115,7 @@ object ScalatestBuild extends Build {
11111115
"org.scalatest.exceptions",
11121116
"org.scalatest.fixture",
11131117
"org.scalatest.funsuite",
1118+
"org.scalatest.funspec",
11141119
"org.scalatest.matchers",
11151120
"org.scalatest.path",
11161121
"org.scalatest.prop",
@@ -1176,6 +1181,7 @@ object ScalatestBuild extends Build {
11761181
"org.scalatest.exceptions",
11771182
"org.scalatest.fixture",
11781183
"org.scalatest.funsuite",
1184+
"org.scalatest.funspec",
11791185
"org.scalatest.matchers",
11801186
"org.scalatest.path",
11811187
"org.scalatest.prop",

scalatest/src/main/scala/org/scalatest/AsyncFunSpec.scala

Lines changed: 34 additions & 2244 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)