free_mutant/spec/integration/mutant/null_spec.rb
2018-09-12 13:15:43 +00:00

16 lines
352 B
Ruby

# frozen_string_literal: true
RSpec.describe 'null integration', mutant: false do
let(:base_cmd) { 'bundle exec mutant -I lib --require test_app "TestApp*"' }
around do |example|
Dir.chdir(TestApp.root) do
example.run
end
end
specify 'it allows to kill mutations' do
expect(Kernel.system(base_cmd)).to be(false)
end
end