I am trying to configure Spork and Capybara using TestUnit and I am running into the test.rb configuration problem.
The problem is that Spork requires config.cache_classes to be set to false, so changes to the model can be reflected when running tests without having to reset Spork all the time.
Capybara, on the other hand, seems to require that config.cache_classes be set to true, otherwise the integration tests just don't work.
I'm just looking for any possible solution / explanation for this. Is this something that exists only in TestUnit, or is it possibly a mistake, and should I report it as such? Any help would be greatly appreciated!
source
share