mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
update test
This commit is contained in:
parent
5eac963625
commit
77cac53d4d
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ defmodule HTTParrot.GeneralRequestInfo do
|
||||||
@doc """
|
@doc """
|
||||||
Group by keys and if duplicated keys, aggregate them as a list
|
Group by keys and if duplicated keys, aggregate them as a list
|
||||||
|
|
||||||
iex> group_by_keys([a: "v1", a: "v2", b: "v3"])
|
iex> group_by_keys([a: "v1", a: "v2", b: "v3", a: "v4"])
|
||||||
%{a: ["v1", "v2"], b: "v3"}
|
%{a: ["v1", "v2", "v4"], b: "v3"}
|
||||||
"""
|
"""
|
||||||
@spec group_by_keys(list) :: map
|
@spec group_by_keys(list) :: map
|
||||||
def group_by_keys([]), do: %{}
|
def group_by_keys([]), do: %{}
|
||||||
|
|
Loading…
Add table
Reference in a new issue