org.http4k.hamkrest.form.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-testing-hamkrest Show documentation
Show all versions of http4k-testing-hamkrest Show documentation
A set of Hamkrest matchers for common http4k types
package org.http4k.hamkrest
import com.natpryce.hamkrest.Matcher
import com.natpryce.hamkrest.has
import org.http4k.lens.Lens
import org.http4k.lens.WebForm
fun hasFormField(lens: Lens, matcher: Matcher): Matcher = LensMatcher(has("Form Field '${lens.meta.name}'", { form: WebForm -> lens(form) }, matcher))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy