Sha256: 624498c5e98ee1a6f3e8344ae7837afb69c060a98ced391725db369880225487

Contents?: true

Size: 578 Bytes

Versions: 29

Compression:

Stored size: 578 Bytes

Contents

riml_include 'dsl.riml'

class AboveMatcherSpec
  defm describe
    return 'AboveMatcher'
  end

  defm it_can_check_for_upper_bounds
    expect(10).to_be_above(1)
    expect(20).to_be_above(10)
  end

  defm it_can_check_for_negation_of_upper_bounds
    expect(10).to_not_be_above(20)
    expect(10).to_not_be_above(10)
  end

  defm it_can_check_for_upper_bounds_with_alias_gt
    expect(10).to_be_gt(1)
    expect(20).to_be_gt(10)
  end

  defm it_can_check_for_negation_of_upper_bounds_with_alias_gt
    expect(10).to_not_be_gt(20)
    expect(10).to_not_be_gt(10)
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
speckle-0.1.12 spec/matchers/above_matcher_spec.riml
speckle-0.1.11 spec/matchers/above_matcher_spec.riml
speckle-0.1.10 spec/matchers/above_matcher_spec.riml
speckle-0.1.9 spec/matchers/above_matcher_spec.riml
speckle-0.1.8 spec/matchers/above_matcher_spec.riml
speckle-0.1.7 spec/matchers/above_matcher_spec.riml
speckle-0.1.4 spec/matchers/above_matcher_spec.riml
speckle-0.1.3 spec/matchers/above_matcher_spec.riml
speckle-0.1.2 spec/matchers/above_matcher_spec.riml