Fork me on GitHub
#cider
<
2017-04-13
>
jfntn15:04:49

So I just read about the test report diff functionality, I thought this was great but I don’t understand how it’s useful in practice given how it’s implemented:

jfntn15:04:11

cider-test-ediff will compare the expected line with the actual one, so I’ll get a diff with on one hand: (= (range 0 10) (range 0 15)) and on the other (= (0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14))

jfntn15:04:22

But of course I’d like to diff the values inside the = expr from the right hand side

jfntn15:04:36

Am i missing something here? Are there any test cases where this would do the right thing?