I am using Cucumber, RSpec, and Factory Girl for the testing of my Rails application. But I have several lookup tables that contain mostly static data. So I'm trying to figure out the best way to populate these when testing. Doing them individually in FactoryGirl
seems tedious and I'd like to stay away from fixtures. For development and production, I populate them in my seeds.rb
file.
Thanks!