free_mutant/spec/unit/mutant/integration_spec.rb
2014-06-28 23:04:18 +00:00

20 lines
380 B
Ruby

require 'spec_helper'
describe Mutant::Integration do
let(:class_under_test) do
Class.new(described_class)
end
let(:object) { class_under_test.new }
describe '#teardown' do
subject { object.teardown }
it_should_behave_like 'a command method'
end
describe '#setup' do
subject { object.setup }
it_should_behave_like 'a command method'
end
end