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`.
14 lines
306 B
Ruby
14 lines
306 B
Ruby
RSpec.describe 'null integration' 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
|