Sha256: 147546f19e6031aa7e98f6e6f52d98b4370744fb68455997cd3c4addc6ed5820

Contents?: true

Size: 314 Bytes

Versions: 8

Compression:

Stored size: 314 Bytes

Contents

module Mutant
  class Matcher
    # Matcher returning subjects already known at its creation time
    class Static
      include Concord.new(:subjects)

      # Call matcher
      #
      # @return [Enumerable<Subject>]
      def call(_env)
        subjects
      end
    end # Static
  end # Matcher
end # Mutant

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mutant-0.8.16 lib/mutant/matcher/static.rb
mutant-0.8.15 lib/mutant/matcher/static.rb
mutant-0.8.14 lib/mutant/matcher/static.rb
mutant-0.8.13 lib/mutant/matcher/static.rb
mutant-0.8.12 lib/mutant/matcher/static.rb
mutant-0.8.11 lib/mutant/matcher/static.rb
mutant-0.8.10 lib/mutant/matcher/static.rb
mutant-0.8.9 lib/mutant/matcher/static.rb