6df5811a87
* I dislike the global infection RSpec does. This commit is a first step to get a rid of it. * Also remove the need for `require 'spec_helper` in each spec file with adjusting `.rspec`.
26 lines
482 B
Ruby
26 lines
482 B
Ruby
RSpec.describe Mutant::Integration do
|
|
|
|
let(:class_under_test) do
|
|
Class.new(described_class)
|
|
end
|
|
|
|
let(:object) { class_under_test.new }
|
|
|
|
describe '#setup' do
|
|
subject { object.setup }
|
|
it_should_behave_like 'a command method'
|
|
end
|
|
end
|
|
|
|
RSpec.describe Mutant::Integration::Null do
|
|
|
|
let(:object) { described_class.new }
|
|
|
|
describe '#setup' do
|
|
subject { object.all_tests }
|
|
|
|
it { should eql([]) }
|
|
|
|
it_should_behave_like 'an idempotent method'
|
|
end
|
|
end
|