Improve and enforce naming of koans at compile time

This commit is contained in:
Felipe Sere
2016-04-10 19:14:35 +01:00
parent 98ab1a0e26
commit 6752ec758c
6 changed files with 23 additions and 17 deletions

View File

@@ -28,7 +28,7 @@ defmodule Tasks do
assert Task.shutdown(handle) == :__
end
koan "shutdown will give you an answer if it has it" do
koan "Shutdown will give you an answer if it has it" do
handle = Task.async(fn -> 3 * 3 end)
:timer.sleep(10)
assert Task.shutdown(handle) == {:ok, :__}