My tests are written using fixtures and I am slowly refactoring them to use factories instead.
Once I've refactored a test class to not use fixtures I want to not load fixtures for that class. Is there a way to do this? Or am I stuck with either loading them for everything or nothing?
For context, here is how my fixtures are set up now:
class ActiveSupport::TestCase
Rake::Task["db:fixtures:load"].execute
...
end