class RSpec::Mocks::ArgumentMatchers::ArrayIncludingMatcher

def ==(actual)

def ==(actual)
  Set.new(actual).superset?(Set.new(@expected))
end

def description

def description
  "array_including(#{@expected.join(",")})"
end

def initialize(expected)

def initialize(expected)
  @expected = expected
end