Sha256: 9a1ad5c4e7ca5056a4f5df4a02b7d77b1537b7b2c3da0f4f6af1f026268e493e
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true RSpec.describe RuboCop::Cop::RSpec::LetSetup do subject(:cop) { described_class.new } it 'complains when let! is used and not referenced' do expect_violation(<<-RUBY) describe Foo do let!(:foo) { bar } ^^^^^^^^^^ Do not use `let!` for test setup. it 'does not use foo' do expect(baz).to eq(qux) end end RUBY end it 'ignores let! when used in `before`' do expect_no_violations(<<-RUBY) describe Foo do let!(:foo) { bar } before do foo end it 'does not use foo' do expect(baz).to eq(qux) end end RUBY end it 'ignores let! when used in example' do expect_no_violations(<<-RUBY) describe Foo do let!(:foo) { bar } it 'uses foo' do foo expect(baz).to eq(qux) end end RUBY end it 'complains when let! is used and not referenced within nested group' do expect_violation(<<-RUBY) describe Foo do context 'when something special happens' do let!(:foo) { bar } ^^^^^^^^^^ Do not use `let!` for test setup. it 'does not use foo' do expect(baz).to eq(qux) end end it 'references some other foo' do foo end end RUBY end end
Version data entries
4 entries across 4 versions & 1 rubygems