Class: RSpec::JsonMatchers::Expectations::Private::InRange

Inherits:
Core::SingleValueCallableExpectation show all
Defined in:
lib/rspec/json_matchers/expectations/private.rb

Overview

Takes exactly one object Use stored proc for checking value

Instance Method Summary collapse

Methods inherited from Core::SingleValueCallableExpectation

[]

Methods inherited from Core::CallableExpectation

[]

Methods inherited from RSpec::JsonMatchers::Expectation

build, build_many

Instance Method Details

#expect?(value) ⇒ Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/rspec/json_matchers/expectations/private.rb', line 79

def expect?(value)
  range.cover?(value)
end