Fix whitespace
This commit is contained in:
parent
ebaa39bbe0
commit
9eab4a1bbd
5 changed files with 7 additions and 8 deletions
|
@ -145,4 +145,3 @@ module Mutant
|
||||||
end # CLI
|
end # CLI
|
||||||
end # Reporter
|
end # Reporter
|
||||||
end # Mutant
|
end # Mutant
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ describe Mutant::Matcher::Method::Instance, '#each' do
|
||||||
|
|
||||||
let(:yields) { [] }
|
let(:yields) { [] }
|
||||||
|
|
||||||
let(:namespace) do
|
let(:namespace) do
|
||||||
klass = self.class
|
klass = self.class
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ describe Mutant::Matcher::Method::Instance, '#each' do
|
||||||
class self::Foo
|
class self::Foo
|
||||||
def bar; end; def bar(arg); end
|
def bar; end; def bar(arg); end
|
||||||
end
|
end
|
||||||
|
|
||||||
let(:method_line) { 2 }
|
let(:method_line) { 2 }
|
||||||
let(:method_arity) { 1 }
|
let(:method_arity) { 1 }
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ describe Mutant::Matcher::Method::Singleton, '#each' do
|
||||||
|
|
||||||
let(:yields) { [] }
|
let(:yields) { [] }
|
||||||
|
|
||||||
let(:namespace) do
|
let(:namespace) do
|
||||||
klass = self.class
|
klass = self.class
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ describe Mutant::Runner::Config, '#subjects' do
|
||||||
|
|
||||||
subject { object.subjects }
|
subject { object.subjects }
|
||||||
|
|
||||||
let(:config) do
|
let(:config) do
|
||||||
mock(
|
mock(
|
||||||
'Config',
|
'Config',
|
||||||
:subjects => [mutation_subject],
|
:subjects => [mutation_subject],
|
||||||
|
|
|
@ -5,8 +5,8 @@ describe Mutant::Runner::Mutation, '#killer' do
|
||||||
|
|
||||||
let(:config) do
|
let(:config) do
|
||||||
mock(
|
mock(
|
||||||
'Config',
|
'Config',
|
||||||
:reporter => reporter,
|
:reporter => reporter,
|
||||||
:strategy => strategy
|
:strategy => strategy
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,7 @@ describe Mutant::Runner::Mutation, '#killer' do
|
||||||
let(:killer) { mock('Killer') }
|
let(:killer) { mock('Killer') }
|
||||||
|
|
||||||
subject { object.killer }
|
subject { object.killer }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
reporter.stub(:report => reporter)
|
reporter.stub(:report => reporter)
|
||||||
strategy.stub(:kill => killer)
|
strategy.stub(:kill => killer)
|
||||||
|
|
Loading…
Add table
Reference in a new issue