Files
elixir-koans/test/koans/processes_koans_test.exs
2016-04-23 20:38:43 -05:00

24 lines
420 B
Elixir

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