Pattern: Identical expressions on both sides of equality
Issue: -
Checks for equality assertions with identical expressions on both sides.
# bad
expect(foo.bar).to eq(foo.bar)
expect(foo.bar).to eql(foo.bar)
# good
expect(foo.bar).to eq(2)
expect(foo.bar).to eql(2)