Files
elixir-koans/test/koans/processes_koans_test.exs
Jay Hayes adabb403ea Fix typo in answers
This isn't failing due to an apparently problem with assert_receive in
the koans. Not quite sure yet why that macro isn't working.
2016-05-02 15:11:30 -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 impatient"},
false,
{:multiple, [true, false]},
{:exited, :random_reason},
true,
false,
{:exited, :normal},
{:exited, :normal},
]
test_all(Processes, answers)
end
end