Fix whitespace

This commit is contained in:
Dan Kubb 2013-06-22 23:24:48 -07:00
parent ebaa39bbe0
commit 9eab4a1bbd
5 changed files with 7 additions and 8 deletions

View file

@ -145,4 +145,3 @@ module Mutant
end # CLI
end # Reporter
end # Mutant

View file

@ -6,7 +6,7 @@ describe Mutant::Matcher::Method::Instance, '#each' do
let(:yields) { [] }
let(:namespace) do
let(:namespace) do
klass = self.class
end
@ -56,7 +56,7 @@ describe Mutant::Matcher::Method::Instance, '#each' do
class self::Foo
def bar; end; def bar(arg); end
end
let(:method_line) { 2 }
let(:method_arity) { 1 }

View file

@ -6,7 +6,7 @@ describe Mutant::Matcher::Method::Singleton, '#each' do
let(:yields) { [] }
let(:namespace) do
let(:namespace) do
klass = self.class
end

View file

@ -5,7 +5,7 @@ describe Mutant::Runner::Config, '#subjects' do
subject { object.subjects }
let(:config) do
let(:config) do
mock(
'Config',
:subjects => [mutation_subject],

View file

@ -5,8 +5,8 @@ describe Mutant::Runner::Mutation, '#killer' do
let(:config) do
mock(
'Config',
:reporter => reporter,
'Config',
:reporter => reporter,
:strategy => strategy
)
end
@ -17,7 +17,7 @@ describe Mutant::Runner::Mutation, '#killer' do
let(:killer) { mock('Killer') }
subject { object.killer }
before do
reporter.stub(:report => reporter)
strategy.stub(:kill => killer)