module ErgomentumRspec::Matchers::Array

Public Instance Methods

be_monotonically_decreasing() click to toggle source
# File lib/ergomentum_rspec/matchers/array/be_monotonically_decreasing.rb, line 6
def be_monotonically_decreasing
  MonotonicallyDecreasing.new
end
be_monotonically_increasing() click to toggle source
# File lib/ergomentum_rspec/matchers/array/be_monotonically_increasing.rb, line 6
def be_monotonically_increasing
  MonotonicallyIncreasing.new
end
be_strictly_decreasing() click to toggle source
# File lib/ergomentum_rspec/matchers/array/be_strictly_decreasing.rb, line 6
def be_strictly_decreasing
  StrictlyDecreasing.new
end
be_strictly_increasing() click to toggle source
# File lib/ergomentum_rspec/matchers/array/be_strictly_increasing.rb, line 6
def be_strictly_increasing
  StrictlyIncreasing.new
end
be_unique() click to toggle source
# File lib/ergomentum_rspec/matchers/array/be_unique.rb, line 6
def be_unique
  BeUnique.new
end