free_mutant/spec/unit/mutant/integration_spec.rb

29 lines
493 B
Ruby
Raw Normal View History

2013-09-13 18:49:04 -04:00
require 'spec_helper'
2014-06-28 19:04:18 -04:00
describe Mutant::Integration do
2013-09-13 18:49:04 -04:00
let(:class_under_test) do
Class.new(described_class)
end
let(:object) { class_under_test.new }
2014-07-12 17:01:51 -04:00
describe '#setup' do
subject { object.setup }
it_should_behave_like 'a command method'
end
end
describe Mutant::Integration::Null do
let(:object) { described_class.new }
describe '#setup' do
subject { object.all_tests }
it { should eql([]) }
2014-07-12 17:01:51 -04:00
it_should_behave_like 'an idempotent method'
2013-09-13 18:49:04 -04:00
end
end