I've been in Factory land for the past few years and have decided to come back to fixtures but am running into a problem.
In my test_helper.rb
I have
class ActiveSupport::TestCase
fixtures :all
end
Then in an individual test case I might be doing something like users(:one)
however the data for users(:two)
and the data for other tables that I am not calling on seems to be present in the test database.
So, is this the expected behavior? I have a hard to believing it is, seems strange from an isolated testing perspective.