# File lib/marjoree/result_set.rb, line 60
  def contains?(*expected_rows)
    expected_rows.flatten.each do |expected|
      return false unless contains_row?(expected)
    end

    return true
  end