33 lines
888 B
Ruby
33 lines
888 B
Ruby
# encoding: utf-8
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Mutant, 'rspec integration' do
|
|
|
|
around do |example|
|
|
Dir.chdir(TestApp.root) do
|
|
example.run
|
|
end
|
|
end
|
|
|
|
let(:base_cmd) { 'bundle exec mutant -I lib --require test_app --rspec' }
|
|
|
|
specify 'it allows to kill mutations' do
|
|
Kernel.system("#{base_cmd} ::TestApp::Literal#string").should be(true)
|
|
end
|
|
|
|
specify 'it allows to exclude mutations' do
|
|
cli = "#{base_cmd} ::TestApp::Literal#string --ignore-subject ::TestApp::Literal#uncovered_string"
|
|
Kernel.system(cli).should be(true)
|
|
end
|
|
|
|
specify 'fails to kill mutations when they are not covered' do
|
|
cli = "#{base_cmd} ::TestApp::Literal#uncovered_string"
|
|
Kernel.system(cli).should be(false)
|
|
end
|
|
|
|
specify 'fails when some mutations are not covered' do
|
|
cli = "#{base_cmd} ::TestApp::Literal"
|
|
Kernel.system(cli).should be(false)
|
|
end
|
|
end
|