Sha256: 3777fcd6ea860bcdbbc00d80bb7c3d1e3c6427cf771f648be8fbc3f251d32323

Contents?: true

Size: 1.1 KB

Versions: 13

Compression:

Stored size: 1.1 KB

Contents

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

      def failure_message_for_should_not
        "expected #{@actual} 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

13 entries across 13 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.beta.22 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.20 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.19 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.18 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.17 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.16 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.15 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.14 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.13 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.12 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.11 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.10 lib/rspec/matchers/satisfy.rb
rspec-expectations-2.0.0.beta.9 lib/rspec/matchers/satisfy.rb