Current section

Files

Jump to
commanded test helpers enumerable.ex
Raw

test/helpers/enumerable.ex

defmodule Commanded.Enumerable do
@moduledoc false
def pluck(enumerable, field) do
Enum.map(enumerable, &Map.get(&1, field))
end
end