module RSpec::Matchers

def have_at_most(n)

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

### Warning:

expect("this").to have_at_most(4).letters
@example

Exactly like have() with <=.
def have_at_most(n)
  BuiltIn::Have.new(n, :at_most)
end