Sha256: dc82dff7e789d2df8591b94ff33c73f959641e4b68979303f8e49c9df6931f2e
Contents?: true
Size: 1.19 KB
Versions: 9
Compression:
Stored size: 1.19 KB
Contents
# encoding: utf-8 Mutant::Meta::Example.add do source 'begin; rescue ExceptionA, ExceptionB => error; true; end' singleton_mutations mutation 'begin; rescue ExceptionA, ExceptionB; true; end' mutation 'begin; rescue self, ExceptionB => error; true; end' mutation 'begin; rescue ExceptionA, self => error; true; end' mutation 'begin; rescue ExceptionA, ExceptionB => error; false; end' mutation 'begin; rescue ExceptionA, ExceptionB => error; nil; end' end Mutant::Meta::Example.add do source 'begin; rescue SomeException => error; true; end' singleton_mutations mutation 'begin; rescue SomeException; true; end' mutation 'begin; rescue SomeException => error; false; end' mutation 'begin; rescue SomeException => error; nil; end' mutation 'begin; rescue self => error; true; end' end Mutant::Meta::Example.add do source 'begin; rescue => error; true end' singleton_mutations mutation 'begin; rescue => error; false; end' mutation 'begin; rescue => error; nil; end' mutation 'begin; rescue; true; end' end Mutant::Meta::Example.add do source 'begin; rescue; true end' singleton_mutations mutation 'begin; rescue; false; end' mutation 'begin; rescue; nil; end' end
Version data entries
9 entries across 9 versions & 1 rubygems