Michael Pilquist
Michael Pilquist
Hm, only reference I see to a message with type `Y` is here: https://www.postgresql.org/docs/current/protocol-logicalrep-message-formats.html But that doesn't seem related to the startup sequence. Can you provide some more details on...
Not much to say that hasn't already been said. Organizations should move to 2.11 or 2.12 or stick with the libraries and versions they are using now. 2.11 came out...
Yes, that's correct. It's possible to support interpolation of constant values at compile time, but not possible to use non-constant values. Doing so would require changing the macro to return...
@adrian-salajan Apologies on the delay in response. I think supporting `IO[Boolean]` is a good idea. We currently support `IO[Unit]` so the original could have been `.map(res => res shouldBe 42).void`
@hugo-vrijswijk This sounds good to me. I do worry a bit about providing too many options. One of the things I really like about munit is that there *aren't* 25...
I personally prefer the mixin style but didn't want scalacheck-effect to diverge from the syntax used by munit-scalacheck. If there was a mixin trait in munit-scalacheck that provided the various...
I don't think so, as we'd still have the same disparity between `forAll` and `forAllF`. Given that ScalaTest doesn't support `forAllF` at all, I think what you're really after is...
Yeah, the idea is to override `scalaCheckTestParameters` from the super `ScalaCheckSuite`: ```scala protected def scalaCheckTestParameters = ScalaCheckTest.Parameters.default ``` FS2 does this here: ```scala override def scalaCheckTestParameters = super.scalaCheckTestParameters .withMinSuccessfulTests(if (isJVM)...
Here's a minimal example that uses scalacheck-effect with scalatest: https://scastie.scala-lang.org/xg0H49nTQOShsniANwynlg ```scala import org.scalatest.Assertion import org.scalatest.funsuite.AnyFunSuite import org.scalacheck.Prop import org.scalacheck.effect.PropF import scala.concurrent.Future import scala.concurrent.ExecutionContext.Implicits.global class ExampleTest extends AnyFunSuite { test("example of...
@OndrejSpanel For a more full featured example, see this gist: https://gist.github.com/mpilquist/7dd30a44ca2a7fe0cd494d9b04e4f661#file-eff-scala Note it relies on a copy/pasted version of `CheckerAsserting.scala` with the type renamed to `CheckerAsserting2.scala` and with the `check`...