parent
ef088809d8
commit
4fba42a5db
2 changed files with 15 additions and 1 deletions
|
@ -51,7 +51,7 @@ module Mutant
|
||||||
#
|
#
|
||||||
# @return [undefined]
|
# @return [undefined]
|
||||||
def mutate_body_receiver
|
def mutate_body_receiver
|
||||||
return unless n_send?(body)
|
return if n_lambda?(send) || !n_send?(body)
|
||||||
|
|
||||||
body_meta = AST::Meta::Send.new(body)
|
body_meta = AST::Meta::Send.new(body)
|
||||||
|
|
||||||
|
|
|
@ -7,3 +7,17 @@ Mutant::Meta::Example.add :block, :lambda do
|
||||||
|
|
||||||
mutation '->() { raise }'
|
mutation '->() { raise }'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Mutant::Meta::Example.add :block, :lambda do
|
||||||
|
source '->() { foo.bar }'
|
||||||
|
|
||||||
|
singleton_mutations
|
||||||
|
|
||||||
|
mutation '->() { }'
|
||||||
|
mutation '->() { self }'
|
||||||
|
mutation '->() { nil }'
|
||||||
|
mutation '->() { raise }'
|
||||||
|
mutation '->() { self.bar }'
|
||||||
|
mutation '->() { foo }'
|
||||||
|
mutation 'foo.bar'
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue