whitespace
This commit is contained in:
@@ -25,7 +25,7 @@ defmodule MapSets do
|
|||||||
koan "Does this value exist in the map set?" do
|
koan "Does this value exist in the map set?" do
|
||||||
assert MapSet.member?(@set, 3) == ___
|
assert MapSet.member?(@set, 3) == ___
|
||||||
end
|
end
|
||||||
|
|
||||||
koan "I am merely another collection but, you can perform some operations on me" do
|
koan "I am merely another collection but, you can perform some operations on me" do
|
||||||
new_set = MapSet.new(@set, fn x -> 3 * x end)
|
new_set = MapSet.new(@set, fn x -> 3 * x end)
|
||||||
|
|
||||||
|
@@ -4,13 +4,13 @@ defmodule MapSetsTest do
|
|||||||
|
|
||||||
test "MapSets" do
|
test "MapSets" do
|
||||||
answers = [
|
answers = [
|
||||||
1,
|
1,
|
||||||
3,
|
3,
|
||||||
:ok,
|
:ok,
|
||||||
true,
|
true,
|
||||||
{:multiple, [true, false]},
|
{:multiple, [true, false]},
|
||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
5,
|
5,
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
|
Reference in New Issue
Block a user