module RSpec::Matchers
def have_at_least(n)
### 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
def have_at_least(n) BuiltIn::Have.new(n, :at_least) end