Add keyword lists koan

This commit is contained in:
Jay Hayes
2016-05-04 19:28:24 -05:00
parent 92973a0fb7
commit b45a08135a
2 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
defmodule KeywordListsTests do
use ExUnit.Case
import TestHarness
test "KeywordLists" do
answers = [
"bar",
"bar",
"baz",
{:multiple, [:foo, "bar"]},
"foo",
"GOOD",
:good,
{:multiple, [:this, :that]},
]
test_all(KeywordLists, answers)
end
end