Skip to content

Commit 919fee6

Browse files
committed
Merge branch 'cheeseng-feature-style-trait-refactoring-march-19' into 3.1.x
2 parents a9927c4 + 2de5883 commit 919fee6

31 files changed

+10117
-9720
lines changed

project/GenScalaTestDotty.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ object GenScalaTestDotty {
151151
copyDir("scalatest/src/main/scala/org/scalatest/featurespec", "org/scalatest/featurespec", targetDir, List.empty) ++
152152
copyDir("scalatest/src/main/scala/org/scalatest/funspec", "org/scalatest/funspec", targetDir, List.empty) ++
153153
copyDir("scalatest/src/main/scala/org/scalatest/funsuite", "org/scalatest/funsuite", targetDir, List.empty) ++
154+
copyDir("scalatest/src/main/scala/org/scalatest/freespec", "org/scalatest/freespec", targetDir, List.empty) ++
155+
copyDir("scalatest/src/main/scala/org/scalatest/flatspec", "org/scalatest/flatspec", targetDir, List.empty) ++
154156
copyDir("scalatest/src/main/scala/org/scalatest/matchers", "org/scalatest/matchers", targetDir,
155157
List(
156158
"Matcher.scala", // Re-implemented with new macro

project/GenScalaTestJS.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ object GenScalaTestJS {
218218
copyDir("scalatest/src/main/scala/org/scalatest/funsuite", "org/scalatest/funsuite", targetDir, List.empty) ++
219219
copyDir("scalatest/src/main/scala/org/scalatest/featurespec", "org/scalatest/featurespec", targetDir, List.empty) ++
220220
copyDir("scalatest/src/main/scala/org/scalatest/funspec", "org/scalatest/funspec", targetDir, List.empty) ++
221+
copyDir("scalatest/src/main/scala/org/scalatest/freespec", "org/scalatest/freespec", targetDir, List.empty) ++
222+
copyDir("scalatest/src/main/scala/org/scalatest/flatspec", "org/scalatest/flatspec", targetDir, List.empty) ++
221223
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
222224
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,
223225
List(

project/GenScalaTestNative.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,12 @@ object GenScalaTestNative {
211211
copyDir("scalatest/src/main/scala/org/scalatest/funspec", "org/scalatest/funspec", targetDir,
212212
asyncs("scalatest/src/main/scala/org/scalatest/funspec")
213213
) ++
214+
copyDir("scalatest/src/main/scala/org/scalatest/freespec", "org/scalatest/freespec", targetDir,
215+
asyncs("scalatest/src/main/scala/org/scalatest/freespec")
216+
) ++
217+
copyDir("scalatest/src/main/scala/org/scalatest/flatspec", "org/scalatest/flatspec", targetDir,
218+
asyncs("scalatest/src/main/scala/org/scalatest/flatspec")
219+
) ++
214220
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
215221
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,
216222
List(

project/scalatest.scala

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,8 @@ object ScalatestBuild {
797797
"org.scalatest.funsuite",
798798
"org.scalatest.featurespec",
799799
"org.scalatest.funspec",
800+
"org.scalatest.freespec",
801+
"org.scalatest.flatpec",
800802
"org.scalatest.matchers",
801803
"org.scalatest.path",
802804
"org.scalatest.prop",
@@ -903,6 +905,8 @@ object ScalatestBuild {
903905
"org.scalatest.funsuite",
904906
"org.scalatest.featurespec",
905907
"org.scalatest.funspec",
908+
"org.scalatest.freespec",
909+
"org.scalatest.flatspec",
906910
"org.scalatest.matchers",
907911
"org.scalatest.path",
908912
"org.scalatest.prop",
@@ -995,6 +999,8 @@ object ScalatestBuild {
995999
"org.scalatest.funsuite",
9961000
"org.scalatest.featurespec",
9971001
"org.scalatest.funspec",
1002+
"org.scalatest.freespec",
1003+
"org.scalatest.flatspec",
9981004
"org.scalatest.matchers",
9991005
"org.scalatest.path",
10001006
"org.scalatest.prop",
@@ -1247,6 +1253,8 @@ object ScalatestBuild {
12471253
"org.scalatest.funsuite",
12481254
"org.scalatest.featurespec",
12491255
"org.scalatest.funspec",
1256+
"org.scalatest.freespec",
1257+
"org.scalatest.flatspec",
12501258
"org.scalatest.matchers",
12511259
"org.scalatest.path",
12521260
"org.scalatest.prop",
@@ -1317,6 +1325,8 @@ object ScalatestBuild {
13171325
"org.scalatest.funsuite",
13181326
"org.scalatest.featurespec",
13191327
"org.scalatest.funspec",
1328+
"org.scalatest.freespec",
1329+
"org.scalatest.flatspec",
13201330
"org.scalatest.matchers",
13211331
"org.scalatest.path",
13221332
"org.scalatest.prop",
@@ -1385,6 +1395,8 @@ object ScalatestBuild {
13851395
"org.scalatest.funsuite",
13861396
"org.scalatest.featurespec",
13871397
"org.scalatest.funspec",
1398+
"org.scalatest.freespec",
1399+
"org.scalatest.flatspec",
13881400
"org.scalatest.matchers",
13891401
"org.scalatest.path",
13901402
"org.scalatest.prop",

scalatest/src/main/scala/org/scalatest/AsyncFlatSpec.scala

Lines changed: 35 additions & 2201 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)