I\'m using rails-rspec gem and I have several specs (models, controllers, etc). When I run:
rails-rspec
bundle exec rake
everything is te
Depending on how your seed file is configured, you might just be able to load/run it from a before(:each) or before(:all) block:
before(:each)
before(:all)
load Rails.root + "db/seeds.rb"