I'm doing some frontend tests on a web app using Ruby's Test::Unit. Are there any awkward race conditions in Test::Unit if I use multithreading in the tests?
For instance, if I want to run a test on 200 different pages, it would be very nice to parallelize it so that the tests might run in 1 second rather than 200 seconds.
So far, it seems like there IS a race condition in the code that counts the number of assertions (if I have an assertion within the multithreaded section, then it will say that there was one assertion rather than 200 assertions), but I haven't been able to uncover any other issues (where there is an error, it always notices).
Thanks!