Sha256: 14b1a6e5d95cb24e2614e2c691eed73ec9701e56abb7dcab76d32118f1ac678e
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 KB
Contents
describe RuboCop::Cop::RSpec::NotToNot, :config do subject(:cop) { described_class.new(config) } context 'when EnforcedStyle is `not_to`' do let(:cop_config) { { 'EnforcedStyle' => 'not_to' } } it 'detects the `to_not` offense' do expect_violation(<<-RUBY) it { expect(false).to_not be_true } ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Prefer `not_to` over `to_not` RUBY end it 'detects no offense when using `not_to`' do expect_no_violations(<<-RUBY) it { expect(false).not_to be_true } RUBY end it 'auto-corrects `to_not` to `not_to`' do corrected = autocorrect_source(cop, ['it { expect(0).to_not equal 1 }']) expect(corrected).to eq 'it { expect(0).not_to equal 1 }' end end context 'when AcceptedMethod is `to_not`' do let(:cop_config) { { 'EnforcedStyle' => 'to_not' } } it 'detects the `not_to` offense' do expect_violation(<<-RUBY) it { expect(false).not_to be_true } ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Prefer `to_not` over `not_to` RUBY end it 'detects no offense when using `to_not`' do expect_no_violations(<<-RUBY) it { expect(false).to_not be_true } RUBY end it 'auto-corrects `not_to` to `to_not`' do corrected = autocorrect_source(cop, ['it { expect(0).not_to equal 1 }']) expect(corrected).to eq 'it { expect(0).to_not equal 1 }' end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-rspec-1.6.0 | spec/rubocop/cop/rspec/not_to_not_spec.rb |
rubocop-rspec-1.5.3 | spec/rubocop/cop/rspec/not_to_not_spec.rb |