Sha256: bbe1566cd61dc7db1073c83618287fba0a9231926791b76607131137f33fb7eb

Contents?: true

Size: 1008 Bytes

Versions: 13

Compression:

Stored size: 1008 Bytes

Contents

#
# courtesy of sander 6
# - http://github.com/sander6/custom_matchers/blob/master/lib/matchers/tolerance_matchers.rb
#
module Sander6
  module CustomMatchers
    
    class ToleranceMatcher
      def initialize(tolerance)
        @tolerance = tolerance
        @target = 0
      end

      def of(target)
        @target = target
        self
      end

      def matches?(value)
        @value = value
        ((@target - @tolerance)..(@target + @tolerance)).include?(@value)
      end

      def failure_message
        "Expected #{@value.inspect} to be within #{@tolerance.inspect} of #{@target.inspect}, but it wasn't.\n" +
          "Difference: #{@value - @target}"
          end

      def negative_failure_message
        "Expected #{@value.inspect} not to be within #{@tolerance.inspect} of #{@target.inspect}, but it was.\n" +
          "Difference: #{@value - @target}"
          end
    end

    def be_within(value)
      Sander6::CustomMatchers::ToleranceMatcher.new(value)
    end

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
em-synchrony-1.0.6 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.5 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.4 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.3 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.2 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.1 spec/helper/tolerance_matcher.rb
em-synchrony-1.0.0 spec/helper/tolerance_matcher.rb
em-synchrony-0.3.0.beta.1 spec/helper/tolerance_matcher.rb
em-synchrony-0.2.0 spec/helper/tolerance_matcher.rb
em-synchrony-0.1.5 spec/helper/tolerance_matcher.rb
em-synchrony-0.1.4 spec/helper/tolerance_matcher.rb
em-synchrony-0.1.2 spec/helper/tolerance_matcher.rb
em-synchrony-0.1.1 spec/helper/tolerance_matcher.rb