Created
September 5, 2025 11:42
-
-
Save zainab-ali/cd6d2550e9bc5da2fd58a788a5486155 to your computer and use it in GitHub Desktop.
weaver-issue-83-repo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//> using scala "3.7.0" | |
//> using dep "org.typelevel::weaver-cats::0.10.1" | |
//> using dep "org.typelevel::weaver-scalacheck::0.10.1" | |
import org.scalacheck.{Arbitrary, Gen} | |
import weaver.* | |
import weaver.scalacheck.* | |
object NonTerminatingSuite extends SimpleIOSuite with Checkers: | |
test("Fix me") { | |
given Arbitrary[String] = Arbitrary(Gen.asciiStr) | |
forall: (s: String) => | |
expect.same("", s) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment