Sha256: 2f79410697fe446f0892f370ff785420ffe42d244983d30ffad3f6a25b71cbac

Contents?: true

Size: 392 Bytes

Versions: 2

Compression:

Stored size: 392 Bytes

Contents

# encoding: utf-8

module Mutant
  class Strategy
    # Static strategies
    class Static < self

      # Always fail to kill strategy
      class Fail < self
        KILLER = Killer::Static::Fail
      end # Fail

      # Always succeed to kill strategy
      class Success < self
        KILLER = Killer::Static::Success
      end # Success

    end # Static
  end # Strategy
end # Mutant

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mutant-0.3.0.rc1 lib/mutant/strategy/static.rb
mutant-0.3.0.beta22 lib/mutant/strategy/static.rb