Skip to content

Commit

Permalink
feat(ser/de): focus on creating an abstraction (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan committed Nov 28, 2024
1 parent 2043ba4 commit d807ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ class CouchbaseSystem internal constructor(
override fun configuration(): List<String> = context.options.configureExposedConfiguration(exposedConfiguration)

@CouchbaseDsl
suspend inline fun <reified T : Any> shouldQuery(
suspend inline fun <reified T> shouldQuery(
query: String,
assertion: (List<T>) -> Unit
crossinline assertion: (List<T>) -> Unit
): CouchbaseSystem {
val typeRef = typeRef<T>()
return flow {
Expand Down
1 change: 1 addition & 0 deletions lib/stove-testing-e2e-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dependencies {
api(projects.lib.stoveTestingE2e)
api(libs.testcontainers.mongodb)
api(libs.mongojack)
implementation(libs.mongodb.kotlin.coroutine)
implementation(libs.kotlinx.io.reactor.extensions)
implementation(libs.kotlinx.reactive)
Expand Down

0 comments on commit d807ed3

Please sign in to comment.