Add wrapping list koan

This commit is contained in:
snikolau
2016-05-04 22:57:05 +01:00
parent b39f951fcc
commit 2e21cdf11b
2 changed files with 5 additions and 0 deletions

View File

@@ -60,4 +60,8 @@ defmodule Lists do
koan "Wrapping other values is a handy option" do
assert List.wrap("value") == ___
end
koan "When there is already a list do not wrap it again" do
assert List.wrap(["value"]) == ___
end
end