Sha256: 568c1e940af7376dc4756793233d69f6d205e19a3bcee768b2a0ae6b4b195304
Contents?: true
Size: 1.31 KB
Versions: 6
Compression:
Stored size: 1.31 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 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
6 entries across 6 versions & 1 rubygems