Sha256: 7c2f717c3f1232fde3dbb212e7f9513f67ec2e979becb5788200be7911f1d7dc

Contents?: true

Size: 1.08 KB

Versions: 10

Compression:

Stored size: 1.08 KB

Contents

module Micronaut
  module Matchers
    
    class Satisfy #:nodoc:
      def initialize(&block)
        @block = block
      end
      
      def matches?(given, &block)
        @block = block if block
        @given = given
        @block.call(given)
      end
      
      def failure_message
        "expected #{@given} to satisfy block"
      end

      def negative_failure_message
        "expected #{@given} not to satisfy block"
      end
    end
    
    # :call-seq:
    #   should satisfy {}
    #   should_not satisfy {}
    #
    # Passes if the submitted block returns true. Yields target to the
    # block.
    #
    # Generally speaking, this should be thought of as a last resort when
    # you can't find any other way to specify the behaviour you wish to
    # specify.
    #
    # If you do find yourself in such a situation, you could always write
    # a custom matcher, which would likely make your specs more expressive.
    #
    # == Examples
    #
    #   5.should satisfy { |n|
    #     n > 3
    #   }
    def satisfy(&block)
      Matchers::Satisfy.new(&block)
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
spicycode-micronaut-0.0.2 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.3 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.4 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.5 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.6 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.7 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.0.9 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.1.0 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.1.1 lib/micronaut/matchers/satisfy.rb
spicycode-micronaut-0.1.2 lib/micronaut/matchers/satisfy.rb