Sha256: 243b3e4e5c96100f8cf5025b4bf4e3e15fe07ff80b2090a2a3becf01f308571c
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
RSpec.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 include_examples 'autocorrect', 'it { expect(0).to_not equal 1 }', 'it { expect(0).not_to equal 1 }' 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 include_examples 'autocorrect', 'it { expect(0).not_to equal 1 }', 'it { expect(0).to_not equal 1 }' end end
Version data entries
4 entries across 4 versions & 1 rubygems