testing

Testing tools, testing philosophy & methodology...
buzzdan 2018-11-15T07:16:09.005600Z

Does anyone know a mutation testing framework in clojure? I didnt find anything that looks useable...

plexus 2018-11-15T08:28:29.006700Z

@buzzdan there's Mutant (https://github.com/jstepien/mutant), it's the best we have, but it's barely usable... Mutation testing is a hard problem to solve, mainly because you want to prevent causing infinite loops.

plexus 2018-11-15T08:29:22.007400Z

It's also been a while since Jan worked on it, so I don't see the situation changing unless someone else picks up the torch.