Files
elixir-koans/test/koans/processes_koans_test.exs
2016-04-24 23:08:06 -05:00

24 lines
423 B
Elixir

defmodule ProcessesTests do
use ExUnit.Case
import 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