spec/rubocop/cop/rspec/scattered_setup_spec.rb in rubocop-rspec-1.15.1 vs spec/rubocop/cop/rspec/scattered_setup_spec.rb in rubocop-rspec-1.16.0

- old
+ new

@@ -1,21 +1,21 @@ RSpec.describe RuboCop::Cop::RSpec::ScatteredSetup do subject(:cop) { described_class.new } it 'flags multiple hooks in the same example group' do - expect_violation(<<-RUBY) + expect_offense(<<-RUBY) describe Foo do before { bar } ^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. before { baz } ^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. end RUBY end it 'flags multiple hooks of the same scope with different symbols' do - expect_violation(<<-RUBY) + expect_offense(<<-RUBY) describe Foo do before { bar } ^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. before(:each) { baz } ^^^^^^^^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. @@ -24,42 +24,42 @@ end RUBY end it 'flags multiple before(:all) hooks in the same example group' do - expect_violation(<<-RUBY) + expect_offense(<<-RUBY) describe Foo do before(:all) { bar } ^^^^^^^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. before(:all) { baz } ^^^^^^^^^^^^^^^^^^^^ Do not define multiple hooks in the same example group. end RUBY end it 'does not flag different hooks' do - expect_no_violations(<<-RUBY) + expect_no_offenses(<<-RUBY) describe Foo do before { bar } after { baz } around { qux } end RUBY end it 'does not flag different hook types' do - expect_no_violations(<<-RUBY) + expect_no_offenses(<<-RUBY) describe Foo do before { bar } before(:all) { baz } before(:suite) { baz } end RUBY end it 'does not flag hooks in different example groups' do - expect_no_violations(<<-RUBY) + expect_no_offenses(<<-RUBY) describe Foo do before { bar } describe '.baz' do before { baz } @@ -67,11 +67,11 @@ end RUBY end it 'does not flag hooks in different shared contexts' do - expect_no_violations(<<-RUBY) + expect_no_offenses(<<-RUBY) describe Foo do shared_context 'one' do before { bar } end @@ -81,10 +81,10 @@ end RUBY end it 'does not flag similar method names inside of examples' do - expect_no_violations(<<-RUBY) + expect_no_offenses(<<-RUBY) describe Foo do before { bar } it 'uses an instance method called before' do expect(before { tricky }).to_not confuse_rubocop_rspec