17 lines
394 B
Ruby
17 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe MochaAdapter do
|
|
let(:adapter) { described_class.new }
|
|
let(:count) { 42 }
|
|
let(:failed) { 25 }
|
|
let(:stdout) { "#{count - failed} passing (20ms)\n\n#{failed} failing" }
|
|
|
|
describe '#parse_output' do
|
|
it 'returns the correct numbers' do
|
|
expect(adapter.parse_output(stdout:)).to eq(count:, failed:)
|
|
end
|
|
end
|
|
end
|