From 419f3c29cb7baf5f9cf7d755a960bd35f667c375 Mon Sep 17 00:00:00 2001 From: Henne Vogelsang Date: Tue, 14 Jun 2016 12:40:41 +0200 Subject: [PATCH] Shoulda Matchers now requires configuration --- spec/spec_helper.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 77e1ad17..aabd22bd 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -96,4 +96,11 @@ RSpec.configure do |config| end +Shoulda::Matchers.configure do |config| + config.integrate do |with| + with.test_framework :rspec + with.library :rails + end +end + OmniAuth.config.test_mode = true