Open andyw8 opened 7 years ago
I wonder if it would be feasible to checking for stubbing the SUT even when subject isn't used, e.g.:
subject
it "..." do loan = Foo.new allow(loan).to receive(:bar).and_return(:baz) expect(loan.bar).to eq(:baz) end
Related to #311
I wonder if it would be feasible to checking for stubbing the SUT even when
subject
isn't used, e.g.: