Fix rubocop offenses

This commit is contained in:
Sebastian Serth
2022-09-14 00:31:47 +02:00
parent 9183c0634f
commit 006c794f54
3 changed files with 9 additions and 8 deletions

View File

@ -43,6 +43,7 @@ describe TestingFrameworkAdapter do
describe '#test_outcome' do
it 'calls the framework-specific implementation' do
allow(adapter).to receive(:parse_output).and_return(count: count, failed: failed, passed: passed)
expect(adapter).to receive(:parse_output)
adapter.test_outcome('')
end
end