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.2.0 spec/matchers/above_matcher_spec.riml
speckle-0.1.31 spec/matchers/above_matcher_spec.riml
speckle-0.1.30 spec/matchers/above_matcher_spec.riml
speckle-0.1.29 spec/matchers/above_matcher_spec.riml
speckle-0.1.28 spec/matchers/above_matcher_spec.riml
speckle-0.1.27 spec/matchers/above_matcher_spec.riml
speckle-0.1.26 spec/matchers/above_matcher_spec.riml
speckle-0.1.25 spec/matchers/above_matcher_spec.riml
speckle-0.1.24 spec/matchers/above_matcher_spec.riml
speckle-0.1.23 spec/matchers/above_matcher_spec.riml
speckle-0.1.22 spec/matchers/above_matcher_spec.riml
speckle-0.1.21 spec/matchers/above_matcher_spec.riml
speckle-0.1.20 spec/matchers/above_matcher_spec.riml
speckle-0.1.19 spec/matchers/above_matcher_spec.riml
speckle-0.1.18 spec/matchers/above_matcher_spec.riml
speckle-0.1.17 spec/matchers/above_matcher_spec.riml
speckle-0.1.16 spec/matchers/above_matcher_spec.riml
speckle-0.1.15 spec/matchers/above_matcher_spec.riml
speckle-0.1.14 spec/matchers/above_matcher_spec.riml
speckle-0.1.13 spec/matchers/above_matcher_spec.riml