Remove "keys and values" example

This commit is contained in:
Jay Hayes
2016-05-04 09:28:35 -05:00
parent c39916df2e
commit f93e29cc8c
2 changed files with 0 additions and 6 deletions

View File

@@ -13,11 +13,6 @@ defmodule Maps do
age: 27 }
end
koan "A map has keys and values" do
assert Enum.sort(Map.keys(@person)) == ___
assert Enum.sort(Map.values(@person)) == ___
end
koan "Fetching a value returns a tuple with ok when it exists" do
assert Map.fetch(@person, :age) == ___
end