Class: RuboCop::Cop::RSpec::ImplicitExpect
- Extended by:
- AutoCorrector
- Includes:
- ConfigurableEnforcedStyle
- Defined in:
- lib/rubocop/cop/rspec/implicit_expect.rb
Overview
Check that a consistent implicit expectation style is used.
This cop can be configured using the ‘EnforcedStyle` option and supports the `–auto-gen-config` flag.
Constant Summary collapse
- MSG =
'Prefer `%<good>s` over `%<bad>s`.'
- ENFORCED_REPLACEMENTS =
alternatives.merge(alternatives.invert).freeze
Instance Method Summary collapse
- #implicit_expect(node) ⇒ Object
-
#on_send(node) ⇒ Object
rubocop:disable Metrics/MethodLength.
Methods inherited from Base
inherited, #on_new_investigation
Methods included from RSpec::Language::NodePattern
#block_pattern, #numblock_pattern, #send_pattern
Methods included from RSpec::Language
#example?, #example_group?, #example_group_with_body?, #hook?, #include?, #let?, #rspec?, #shared_group?, #spec_group?, #subject?
Instance Method Details
#implicit_expect(node) ⇒ Object
32 33 34 35 36 37 |
# File 'lib/rubocop/cop/rspec/implicit_expect.rb', line 32 def_node_matcher :implicit_expect, <<-PATTERN { (send nil? ${:should :should_not} ...) (send (send nil? $:is_expected) #Runners.all ...) } PATTERN |
#on_send(node) ⇒ Object
rubocop:disable Metrics/MethodLength
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/rubocop/cop/rspec/implicit_expect.rb', line 47 def on_send(node) # rubocop:disable Metrics/MethodLength return unless (source_range = offending_expect(node)) expectation_source = source_range.source if expectation_source.start_with?(style.to_s) correct_style_detected else opposite_style_detected msg = (expectation_source) add_offense(source_range, message: msg) do |corrector| replacement = replacement_source(expectation_source) corrector.replace(source_range, replacement) end end end |