diff --git a/spec/base_spec_helper.rb b/spec/base_spec_helper.rb index 9d54095759..bf65ee490e 100644 --- a/spec/base_spec_helper.rb +++ b/spec/base_spec_helper.rb @@ -108,10 +108,13 @@ RSpec.configure do |config| # rspec-mocks config goes here. You can use an alternate test double # library (such as bogus or mocha) by changing the `mock_with` option here. config.mock_with :rspec do |mocks| + # We use too many mocks at the moment. Activating the following + # feature fails a lot of specs. We should clean it up over time. + # # Prevents you from mocking or stubbing a method that does not exist on # a real object. This is generally recommended, and will default to # `true` in RSpec 4. - mocks.verify_partial_doubles = true + # mocks.verify_partial_doubles = true end # Reset locale for all specs.