Loading Fixtures Earlier

Is there any way to have fixtures loaded earlier on in the testing process, or is there some proper Rails-provided way to seed the test database?

     Yes. From 2.3.4 onwards there is db/seeds.rb file .You can write put data there. For more information please watch this Railscast

Sijo