configure shoulda-matchers

This commit is contained in:
Lars Henrik Mai 2016-02-17 08:35:59 +01:00
parent 3616eb07d9
commit 88c7951160
2 changed files with 7 additions and 1 deletions

View file

@ -20,7 +20,7 @@ require 'rspec/rails'
# directory. Alternatively, in the individual `*_spec.rb` files, manually
# require only the support files necessary.
#
# Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
# Checks for pending migrations before tests are run.
# If you are not using ActiveRecord, you can remove this line.

6
spec/support/shoulda.rb Normal file
View file

@ -0,0 +1,6 @@
Shoulda::Matchers.configure do |config|
config.integrate do |with|
with.test_framework :rspec
with.library :rails
end
end