does kotest support something like minutest’s fixt...
# kotest
c
does kotest support something like minutest’s fixture? http://oneeyedmen.com/my-new-test-model.html
s
Not really, because I never understood the need for it. You can just have val(s) in the class body, and if you want it to be reset every test, set the isolation mode to instance per test, and you get an entire fresh class instance with those vals re-initialized. That seemed to me to be more powerful than having to wrap your test objects into a single fixture object. But that being said, if there's a use case for fixtures that aren't covered by Kotest's current functionality, I'm totally up for adding support.