free_mutant/spec/unit/mutant/integration_spec.rb

27 lines
482 B
Ruby
Raw Normal View History

RSpec.describe Mutant::Integration do
2013-09-14 00:49:04 +02:00
let(:class_under_test) do
Class.new(described_class)
end
let(:object) { class_under_test.new }
2014-07-12 21:01:51 +00:00
describe '#setup' do
subject { object.setup }
it_should_behave_like 'a command method'
end
end
RSpec.describe Mutant::Integration::Null do
2014-07-12 21:01:51 +00:00
let(:object) { described_class.new }
describe '#setup' do
subject { object.all_tests }
it { should eql([]) }
2014-07-12 21:01:51 +00:00
it_should_behave_like 'an idempotent method'
2013-09-14 00:49:04 +02:00
end
end