Create a test file for each of the koan modules

This commit is contained in:
Felipe Sere
2016-04-23 11:46:45 +01:00
parent 4c5009c697
commit b1479487b0
14 changed files with 250 additions and 215 deletions

View File

@@ -0,0 +1,23 @@
defmodule ProcessesTests do
use ExUnit.Case
use TestHarness
test "Processes" do
answers = [
true,
:running,
"hola!",
:how_are_you?,
{:waited_too_long, "I am inpatient"},
false,
{:multiple, [true, false]},
{:exited, :random_reason},
true,
false,
{:exited, :normal},
{:exited, :normal}
]
test_all(Processes, answers)
end
end