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.1.12 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.11 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.10 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.9 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.8 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.7 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.4 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.3 spec/matchers/atleast_matcher_spec.riml
speckle-0.1.2 spec/matchers/atleast_matcher_spec.riml