I have a function which generates random numbers. When acceptance testing, I want to replace this with one that generates known numbers.
In an object oriented language I would use dependency injection and simply wire up this component differently in the test set-up. The only way I can see to do this in a functional language is to pass the dependency through the program, from the root, until it gets to the function that needs it (is "turtles all the way down" the correct phrase here?).
Is there a better way?