claimant icon indicating copy to clipboard operation
claimant copied to clipboard

Library to support automatic labeling of ScalaCheck properties.

Results 3 claimant issues
Sort by recently updated
recently updated
newest added

Hello Everyone, According to the tests that were removed in #15 Claimant should display nice values when they are compared with `cats.Eq`'s `===` operator, but I cannot get same behaviour:...

``` [error] /Users/oscar/stripe/agate/tests/src/test/scala/com/stripe/agate/tensor/Float16Test.scala:142:12: inferred type arguments [Float.type] do not conform to method render's type parameter bounds [A] [error] Claim(JFloat.compare(x.toFloat, shortBitsToFloat(x.raw)) == 0) [error] ^ [error] /Users/oscar/stripe/agate/tests/src/test/scala/com/stripe/agate/tensor/Float16Test.scala:142:13: type mismatch; [error] found...

I noticed that certain kinds of expressions seem to cause problems under 2.11: ```scala val xs = List(1,2,3,4) val prop0 = Claim(xs.flatMap(x => List(x).filter(_ => false)) == Nil) ``` If...