Remove commented koans

We can't pull this off right now since answers can't be expressions.
This commit is contained in:
Jay Hayes
2016-05-05 10:41:57 -05:00
parent 7b64bd36e9
commit ee89055af6
2 changed files with 0 additions and 18 deletions

View File

@@ -19,22 +19,6 @@ defmodule Atoms do
assert list[:name] == ___
end
#koan "Only atom keys may be accessed with dot syntax" do
# map = %{name: "Jay"}
# assert map.name == ___
# map = %{"name" => "Jay"}
# assert_raise KeyError, fn -> ___ end
# assert map["name"] == ___
#end
#koan "Dot syntax is stricter than access with brackets" do
# map = %{name: "Jay"}
# assert map[:age] == ___
# assert_raise KeyError, fn -> ___ end
#end
koan "It is surprising to find out that booleans are atoms" do
assert is_atom(true) == ___
assert is_atom(false) == ___