free_mutant/lib/mutant/mutator/node/rescue.rb
Markus Schirp a3b558bec0 Remove guard via identity
* Simplify spec helper via mutation verifier class
* There was no need to guard via mapped identity anymore.
2014-04-12 01:13:26 +00:00

14 lines
214 B
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# Mutator for rescue nodes
class Rescue < Generic
handle :rescue
end # Rescue
end # Node
end # Mutator
end # Mutant