Skip to content

Commit 16031c4

Browse files
committed
Add test for #19421
1 parent 3694d95 commit 16031c4

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import com.typesafe.config.Config
2+
import akka.persistence.snapshot.SnapshotStoreSpec
3+
4+
object ConfigHelper {
5+
def config(): Config = ???
6+
}
7+
8+
class S3SnapshotStoreSpec extends SnapshotStoreSpec(null)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
scalaVersion := sys.props("plugin.scalaVersion")
2+
3+
libraryDependencies ++= Seq(
4+
"com.typesafe.akka" %% "akka-persistence-tck" % "2.8.0"
5+
).map(_.cross(CrossVersion.for3Use2_13))

sbt-test/scala2-compat/i19421/test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> compile
2+
> clean
3+
> compile

0 commit comments

Comments
 (0)