Commit 17385f4d authored by Vitali Tatarintev's avatar Vitali Tatarintev

Refactor BeSuccessMatcher specs for readability

parent 99b27e69
...@@ -273,3 +273,4 @@ RSpec/BeSuccessMatcher: ...@@ -273,3 +273,4 @@ RSpec/BeSuccessMatcher:
- 'spec/support/shared_examples/controllers/**/*' - 'spec/support/shared_examples/controllers/**/*'
- 'ee/spec/support/shared_examples/controllers/**/*' - 'ee/spec/support/shared_examples/controllers/**/*'
- 'spec/support/controllers/**/*' - 'spec/support/controllers/**/*'
- 'ee/spec/support/controllers/**/*'
...@@ -26,7 +26,7 @@ module RuboCop ...@@ -26,7 +26,7 @@ module RuboCop
class BeSuccessMatcher < RuboCop::Cop::Cop class BeSuccessMatcher < RuboCop::Cop::Cop
include SpecHelpers include SpecHelpers
MESSAGE = 'Do not use deprecated `success?` method, use `successful?` instead.'.freeze MESSAGE = 'Do not use deprecated `success?` method, use `successful?` instead.'
def_node_search :expect_to_be_success?, <<~PATTERN def_node_search :expect_to_be_success?, <<~PATTERN
(send (send nil? :expect (send nil? ...)) {:to :not_to :to_not} (send nil? :be_success)) (send (send nil? :expect (send nil? ...)) {:to :not_to :to_not} (send nil? :be_success))
......
...@@ -10,33 +10,6 @@ require_relative '../../../../rubocop/cop/rspec/be_success_matcher' ...@@ -10,33 +10,6 @@ require_relative '../../../../rubocop/cop/rspec/be_success_matcher'
describe RuboCop::Cop::RSpec::BeSuccessMatcher do describe RuboCop::Cop::RSpec::BeSuccessMatcher do
include CopHelper include CopHelper
CODE_EXAMPLES = [
{
bad: %(expect(response).to be_success).freeze,
good: %(expect(response).to be_successful).freeze
},
{
bad: %(expect(response).to_not be_success).freeze,
good: %(expect(response).to_not be_successful).freeze
},
{
bad: %(expect(response).not_to be_success).freeze,
good: %(expect(response).not_to be_successful).freeze
},
{
bad: %(is_expected.to be_success).freeze,
good: %(is_expected.to be_successful).freeze
},
{
bad: %(is_expected.to_not be_success).freeze,
good: %(is_expected.to_not be_successful).freeze
},
{
bad: %(is_expected.not_to be_success).freeze,
good: %(is_expected.not_to be_successful).freeze
}
].freeze
let(:source_file) { 'spec/foo_spec.rb' } let(:source_file) { 'spec/foo_spec.rb' }
subject(:cop) { described_class.new } subject(:cop) { described_class.new }
...@@ -59,18 +32,44 @@ describe RuboCop::Cop::RSpec::BeSuccessMatcher do ...@@ -59,18 +32,44 @@ describe RuboCop::Cop::RSpec::BeSuccessMatcher do
end end
end end
CODE_EXAMPLES.each do |code_example| shared_examples 'cop' do |good:, bad:|
context "using #{code_example[:bad]} call" do context "using #{bad} call" do
it_behaves_like 'an offensive be_success call', code_example[:bad] it_behaves_like 'an offensive be_success call', bad
it_behaves_like 'an autocorrected be_success call', code_example[:bad], code_example[:good] it_behaves_like 'an autocorrected be_success call', bad, good
end end
context "using #{code_example[:good]} call" do context "using #{good} call" do
it 'does not register an offense' do it 'does not register an offense' do
inspect_source(code_example[:good]) inspect_source(good)
expect(cop.offenses.size).to eq(0) expect(cop.offenses.size).to eq(0)
end end
end end
end end
describe 'using different code examples' do
it_behaves_like 'cop',
bad: 'expect(response).to be_success',
good: 'expect(response).to be_successful'
it_behaves_like 'cop',
bad: 'expect(response).to_not be_success',
good: 'expect(response).to_not be_successful'
it_behaves_like 'cop',
bad: 'expect(response).not_to be_success',
good: 'expect(response).not_to be_successful'
it_behaves_like 'cop',
bad: 'is_expected.to be_success',
good: 'is_expected.to be_successful'
it_behaves_like 'cop',
bad: 'is_expected.to_not be_success',
good: 'is_expected.to_not be_successful'
it_behaves_like 'cop',
bad: 'is_expected.not_to be_success',
good: 'is_expected.not_to be_successful'
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment