Sha256: 3963a16e6dce9971dc8a2a958cbb2f21b198f893247bd3cb5a2608bc6b9c8bb9

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

module RR
  module Expectations
    class TimesCalledExpectation #:nodoc:
      attr_reader :double, :times_called

      def initialize(double)
        @double = double
        @times_called = 0
        @verify_backtrace = caller[1..-1]
      end

      def attempt?
        times_matcher.attempt?(@times_called)
      end

      def attempt
        @times_called += 1
        verify_input_error unless times_matcher.possible_match?(@times_called)
        return
      end

      def verify
        return false unless times_matcher.is_a?(TimesCalledMatchers::TimesCalledMatcher)
        return times_matcher.matches?(@times_called)
      end

      def verify!
        unless verify
          if @verify_backtrace
            error = Errors::TimesCalledError.new(error_message)
            error.backtrace = @verify_backtrace
            raise error
          else
            raise Errors::TimesCalledError, error_message
          end
        end
      end

      def terminal?
        times_matcher.terminal?
      end

    protected
      def times_matcher
        double.definition.times_matcher
      end

      def verify_input_error
        raise Errors::TimesCalledError, error_message
      end

      def error_message
        "#{double.formatted_name}\n#{times_matcher.error_message(@times_called)}"
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rr-1.0.5 lib/rr/expectations/times_called_expectation.rb
rr-1.0.5.rc2 lib/rr/expectations/times_called_expectation.rb
rr-1.0.5.rc1 lib/rr/expectations/times_called_expectation.rb