module RSpec::Matchers

def have_at_least(n)

`expect(..).not_to have_at_least` is not supported

### Warning:

expect("this").to have_at_least(3).letters
@example

Exactly like have() with >=.
def have_at_least(n)
  BuiltIn::Have.new(n, :at_least)
end