1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00

update test

This commit is contained in:
Po Chen 2016-09-07 23:08:54 +10:00 committed by GitHub
parent 5eac963625
commit 77cac53d4d

View file

@ -14,8 +14,8 @@ defmodule HTTParrot.GeneralRequestInfo do
@doc """
Group by keys and if duplicated keys, aggregate them as a list
iex> group_by_keys([a: "v1", a: "v2", b: "v3"])
%{a: ["v1", "v2"], b: "v3"}
iex> group_by_keys([a: "v1", a: "v2", b: "v3", a: "v4"])
%{a: ["v1", "v2", "v4"], b: "v3"}
"""
@spec group_by_keys(list) :: map
def group_by_keys([]), do: %{}