I have a function that is supposed to take a lazy seq and return an unrealized lazy seq. Now I want to write a unit test (in test-is btw) to make sure that the result is an unrealized lazy sequence.
feedback
|
If you have a lot of things to test, maybe this would simplify it:
| ||||
|
feedback
|
|
Use a function with a side effect (say, writing to a ref) as the sequence generator function in your test case. If the side effect never happens, it means the sequence remains unrealized... as soon as the sequence is realized, the function will be called. First, set it up like this:
Then, run your function. I'll just use map, here:
Test if test-fn ever ran:
Since we know map is lazy, it should always work at this point. Now, force evaluation of the sequence:
And check the value of effect-count again. This time, we DO expect the side effect to have triggered. And, it is so...
| |||
feedback
|