Class/Module Index [+]

Quicksearch

RSpec::Matchers::BuiltIn::BeBetween

@api private Provides the implementation for `be_between`. Not intended to be instantiated directly.

Public Class Methods

new(min, max) click to toggle source
# File lib/rspec/matchers/built_in/be_between.rb, line 8
def initialize(min, max)
  @min, @max = min, max
  inclusive
end

Public Instance Methods

description() click to toggle source

@api private @return [String]

# File lib/rspec/matchers/built_in/be_between.rb, line 57
def description
  "be between #{@min.inspect} and #{@max.inspect} (#{@mode})"
end
exclusive() click to toggle source

@api public Makes the between comparison exclusive.

@example

expect(3).to be_between(2, 4).exclusive
# File lib/rspec/matchers/built_in/be_between.rb, line 33
def exclusive
  @less_than_operator = :<
  @greater_than_operator = :>
  @mode = :exclusive
  self
end
failure_message() click to toggle source

@api private @return [String]

# File lib/rspec/matchers/built_in/be_between.rb, line 51
def failure_message
  "#{super}#{not_comparable_clause}"
end
inclusive() click to toggle source

@api public Makes the between comparison inclusive.

@example

expect(3).to be_between(2, 3).inclusive

@note The matcher is inclusive by default; this simply provides

a way to be more explicit about it.
# File lib/rspec/matchers/built_in/be_between.rb, line 21
def inclusive
  @less_than_operator = :<=
  @greater_than_operator = :>=
  @mode = :inclusive
  self
end
matches?(actual) click to toggle source

@api private @return [Boolean]

# File lib/rspec/matchers/built_in/be_between.rb, line 42
def matches?(actual)
  @actual = actual
  comparable? && compare
rescue ArgumentError
  false
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.