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

@@ -6,7 +6,7 @@ defmodule Enums do
end
koan "Depending on the type, it counts pairs" do
assert Enum.count(%{ :a => :foo, :b => :bar}) == ___
assert Enum.count(%{ a: :foo, b: :bar}) == ___
end
def less_than_five?(n), do: n < 5