Add test for agents koans

This commit is contained in:
Jay Hayes
2016-04-26 17:09:16 -05:00
parent 937cc28d0f
commit cd4f7c755d

View File

@@ -0,0 +1,15 @@
defmodule AgentTests do
use ExUnit.Case
import TestHarness
test "Agents" do
answers = [
"Hi there",
"HI THERE",
{:multiple, [["Milk"], ["Bread", "Milk"]]},
false,
]
test_all(Agents, answers)
end
end