From eb822c4a5e8fb1e7b8d9914724bb5367c8d81c98 Mon Sep 17 00:00:00 2001 From: Bertocq Date: Sun, 7 Jan 2018 16:48:15 +0100 Subject: [PATCH] Enable RSpec/MessageSpies cop without issues EnforcedStyle: receive configuration was added to follow codebase conventions Read about cop at http://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/MessageSpies --- .rubocop.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 66e3555f4..12a380c27 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -126,4 +126,8 @@ RSpec/MessageChain: Enabled: true RSpec/MessageExpectation: - Enabled: true \ No newline at end of file + Enabled: true + +RSpec/MessageSpies: + Enabled: true + EnforcedStyle: receive \ No newline at end of file