Sha256: 3de93167a6ae35dc2466c481a4351562fea5422ee07497def49206f5cba0622e

Contents?: true

Size: 980 Bytes

Versions: 71

Compression:

Stored size: 980 Bytes

Contents

# Provides the '==' assertion method.
#
# Example:
#
#     insist { "foo" } == "foo"
module Insist::Comparators
  include Insist::Assert
  require "insist/comparators19" if RUBY_VERSION >= "1.9.2"

  # value == expected
  def ==(expected)
    assert(value == expected,
           "Expected #{expected.inspect}, but got #{value.inspect}")
  end # def ==

  # value <= expected
  def <=(expected)
    assert(value <= expected,
           "Expected #{value.inspect} <= #{expected.inspect}")
  end # def <=
 
  # value >= expected
  def >=(expected)
    assert(value >= expected,
           "Expected #{value.inspect} >= #{expected.inspect}")
  end # def >=

  # value > expected
  def >(expected)
    assert(value > expected,
           "Expected #{value.inspect} > #{expected.inspect}")
  end # def >

  # value < expected
  def <(expected)
    assert(value < expected,
           "Expected #{value.inspect} < #{expected.inspect}")
  end # def <
 
end # module Insist::Comparators

Version data entries

71 entries across 67 versions & 18 rubygems

Version Path
logstash-output-scalyr-0.2.1.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.2.0 vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.2.0.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.26.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.25.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.24.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.23.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.22.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.21.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.20.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.19.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.18.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.17.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.16.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.15.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.14.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.13 vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.12 vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.11.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb
logstash-output-scalyr-0.1.10.beta vendor/bundle/jruby/2.5.0/gems/insist-1.0.0/lib/insist/comparators.rb