Pattern: Use of expect
in hook
Issue: -
Do not use expect
in hooks such as before
.
# bad
before do
expect(something).to eq 'foo'
end
# bad
after do
expect_any_instance_of(Something).to receive(:foo)
end
# good
it do
expect(something).to eq 'foo'
end