This is in standard test.rb:
config.eager_load = false
Does this advice make sense when running the entire test suite, or only when running a single test?
How do I decide whether to enable or disable?
Is there a great recipe for it to be false when running individual tests and true when running the whole package?
(I suspiciously that some types of errors I get are the result of being disabled)
source
share