First tests in rspec, with factory_girl

This commit is contained in:
Henne Vogelsang 2014-04-09 01:32:47 +02:00
parent accd7d1a58
commit e3fd0c195a
11 changed files with 131 additions and 19 deletions

View file

@ -0,0 +1,7 @@
RSpec.configure do |config|
config.before(:suite) do
FactoryGirl.lint
end
end

7
spec/support/seeds.rb Normal file
View file

@ -0,0 +1,7 @@
RSpec.configure do |config|
config.before(:suite) do
load "#{Rails.root}/db/seeds.rb"
end
end