module RSpec::Matchers

def match_array(array)

Other tags:
    Note: - This matcher only supports positive expectations.
    Note: - This is also available using the `=~` operator with `should`,
def match_array(array)
  BuiltIn::MatchArray.new(array)
end