Sha256: 3048719de17acba6c5944821a8884af6cc40b311624814cc2950e6893735d4fe

Contents?: true

Size: 565 Bytes

Versions: 29

Compression:

Stored size: 565 Bytes

Contents

riml_include 'dsl.riml'

class AtleastMatcherSpec
  defm describe
    return 'AtleastMatcher'
  end

  defm it_can_check_for_least
    expect(5).to_be_at_least(5)
    expect(10).to_be_at_least(6)
  end

  defm it_can_check_for_negation_of_least
    expect(5).to_not_be_at_least(6)
    expect(10).to_not_be_at_least(11)
  end

  defm it_can_check_for_least_with_gte_alias
    expect(5).to_be_gte(5)
    expect(10).to_be_gte(6)
  end

  defm it_can_check_for_negation_of_least_with_gte_alias
    expect(5).to_not_be_gte(6)
    expect(10).to_not_be_gte(11)
  end

end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
speckle-0.2.0 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.31 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.30 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.29 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.28 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.27 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.26 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.25 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.24 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.23 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.22 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.21 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.20 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.19 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.18 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.17 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.16 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.15 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.14 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.13 spec/matchers/atleast_matcher_spec.riml