remove elementary MapSet.size/1 koan

size is covered under koan "However, I do not allow duplication"
This commit is contained in:
Cohen Carlisle
2018-03-02 10:18:25 -05:00
parent 432988014a
commit 3a58b49fe6
2 changed files with 0 additions and 5 deletions

View File

@@ -9,10 +9,6 @@ defmodule MapSets do
assert Enum.fetch(@set, 0) == {:ok, ___} assert Enum.fetch(@set, 0) == {:ok, ___}
end end
koan "How large is my map set?" do
assert MapSet.size(@set) == ___
end
koan "However, I do not allow duplication" do koan "However, I do not allow duplication" do
new_set = MapSet.new([1, 1, 2, 3, 3, 3]) new_set = MapSet.new([1, 1, 2, 3, 3, 3])

View File

@@ -5,7 +5,6 @@ defmodule MapSetsTest do
test "MapSets" do test "MapSets" do
answers = [ answers = [
1, 1,
5,
3, 3,
{:multiple, [false, true]}, {:multiple, [false, true]},
true, true,