Discipline integration
Weaver comes with basic Discipline integration, allowing property-based law testing.
Installation
You'll need to install an additional dependency in order to use Discipline with Weaver.
SBT
libraryDependencies +=  "org.typelevel" %% "weaver-discipline" % "0.10.1" % Test
        
        Mill
object test extends Tests {
  def ivyDeps = Agg(
    ivy"org.typelevel::weaver-discipline:0.10.1"
  )
}
        
        Usage
Add the weaver.discipline.Discipline mixin to a FunSuite to use Discipline within your test suite.
import weaver._
import weaver.discipline._
import cats.kernel.laws.discipline.EqTests
object DisciplineTests extends FunSuite with Discipline {
  checkAll("Int", EqTests[Int].eqv)
  checkAll("Boolean", EqTests[Boolean].eqv)
}
        repl.MdocSessionMdocAppDisciplineTests + Int: eq.antisymmetry eq 33ms + Int: eq.reflexivity eq 7ms + Int: eq.symmetry eq 8ms + Int: eq.transitivity eq 11ms + Boolean: eq.antisymmetry eq 8ms + Boolean: eq.reflexivity eq 2ms + Boolean: eq.symmetry eq 4ms + Boolean: eq.transitivity eq 4ms Total 8, Failed 0, Passed 8, Ignored 0