Make sure blank is on the right and improve koans

This commit is contained in:
Felipe Sere
2016-04-23 10:56:17 +01:00
parent 29da6d92a0
commit 14d4e4f551
11 changed files with 46 additions and 55 deletions

View File

@@ -25,7 +25,9 @@ defmodule Tasks do
:timer.sleep(100)
3 * 3
end)
assert Task.shutdown(handle) == ___
%Task{pid: pid} = handle
Task.shutdown(handle)
assert Process.alive?(pid) == ___
end
koan "Shutdown will give you an answer if it has it" do