<@U12AGS8JG> i was checking out 5.0.0 snapshot bui...
# kotest-contributors
m
@sam i was checking out 5.0.0 snapshot builds, and I’ve got `[java.lang.NoSuchMethodError: 'io.kotest.property.Arb io.kotest.property.arbitrary.BuildersKt.constant(io.kotest.property.Arb$Companion, java.lang.Object)']`I have a feeling that’s because some of our deps (maybe property-arrow) was compiled against kotest 4.x. in 5.x it seems like
Arb.constant
was moved to its specific kotlin file. What strategy do we have on this? i can raise a PR to perhaps change the usage of
Arb.constant
to
Arb.of
or perhaps a simple arbitrary builder (which i think didn’t move)
ah i realized that https://github.com/kotest/kotest-extensions-arrow has everything i needed. sam this repo seems to also have matchers and properties. is the plan to centralize all arrow methods here? this also already compiled against 5.x https://github.com/kotest/kotest-extensions-arrow/blob/master/buildSrc/src/main/kotlin/Libs.kt#L14
@sam
s
Yes one arrow repo for all
m
Awesome!
s
we need to migrate the arbs from the old to the new @Imran/Malic