diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-07-03 09:50:21 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-07-03 09:53:25 +0100 |
commit | fa47fcb49980b1b1a2b2982389006345658bae79 (patch) | |
tree | 4c168df0a645ed7db2e06aadfbbdbd0a1d0aa9bf /gen/test/gleam@map_dict_test.erl | |
parent | 02fd6d96e60d1a578193744a7799178755e37fde (diff) | |
download | gleam_stdlib-fa47fcb49980b1b1a2b2982389006345658bae79.tar.gz gleam_stdlib-fa47fcb49980b1b1a2b2982389006345658bae79.zip |
Improve erl formatting
Diffstat (limited to 'gen/test/gleam@map_dict_test.erl')
-rw-r--r-- | gen/test/gleam@map_dict_test.erl | 200 |
1 files changed, 103 insertions, 97 deletions
diff --git a/gen/test/gleam@map_dict_test.erl b/gen/test/gleam@map_dict_test.erl index f19f735..98c1486 100644 --- a/gen/test/gleam@map_dict_test.erl +++ b/gen/test/gleam@map_dict_test.erl @@ -4,20 +4,22 @@ -export([from_list_test/0, has_key_test/0, new_test/0, fetch_test/0, put_test/0, map_values_test/0, keys_test/0, values_test/0, take_test/0, drop_test/0, merge_test/0, delete_test/0, update_test/0, fold_test/0]). from_list_test() -> - gleam@expect:equal(gleam@map_dict:size(gleam@map_dict:from_list([{4, 0}, - {1, 0}])), - 2). + gleam@expect:equal( + gleam@map_dict:size(gleam@map_dict:from_list([{4, 0}, {1, 0}])), + 2 + ). has_key_test() -> gleam@expect:false(gleam@map_dict:has_key(gleam@map_dict:from_list([]), 1)), - gleam@expect:true(gleam@map_dict:has_key(gleam@map_dict:from_list([{1, 0}]), - 1)), - gleam@expect:true(gleam@map_dict:has_key(gleam@map_dict:from_list([{4, 0}, - {1, 0}]), - 1)), - gleam@expect:false(gleam@map_dict:has_key(gleam@map_dict:from_list([{4, 0}, - {1, 0}]), - 0)). + gleam@expect:true( + gleam@map_dict:has_key(gleam@map_dict:from_list([{1, 0}]), 1) + ), + gleam@expect:true( + gleam@map_dict:has_key(gleam@map_dict:from_list([{4, 0}, {1, 0}]), 1) + ), + gleam@expect:false( + gleam@map_dict:has_key(gleam@map_dict:from_list([{4, 0}, {1, 0}]), 0) + ). new_test() -> gleam@expect:equal(gleam@map_dict:size(gleam@map_dict:new()), 0), @@ -31,89 +33,91 @@ fetch_test() -> gleam@expect:is_error(gleam@map_dict:fetch(M, 2)). put_test() -> - gleam@expect:equal(gleam@map_dict:put(gleam@map_dict:put(gleam@map_dict:put(gleam@map_dict:new(), - <<"a">>, - 0), - <<"b">>, - 1), - <<"c">>, - 2), - gleam@map_dict:from_list([{<<"a">>, 0}, - {<<"b">>, 1}, - {<<"c">>, 2}])). + gleam@expect:equal( + gleam@map_dict:put( + gleam@map_dict:put( + gleam@map_dict:put(gleam@map_dict:new(), <<"a">>, 0), + <<"b">>, + 1 + ), + <<"c">>, + 2 + ), + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]) + ). map_values_test() -> - gleam@expect:equal(gleam@map_dict:map_values(gleam@map_dict:from_list([{1, - 0}, - {2, - 1}, - {3, - 2}]), - fun(K, V) -> K + V end), - gleam@map_dict:from_list([{1, 1}, {2, 3}, {3, 5}])). + gleam@expect:equal( + gleam@map_dict:map_values( + gleam@map_dict:from_list([{1, 0}, {2, 1}, {3, 2}]), + fun(K, V) -> K + V end + ), + gleam@map_dict:from_list([{1, 1}, {2, 3}, {3, 5}]) + ). keys_test() -> - gleam@expect:equal(gleam@map_dict:keys(gleam@map_dict:from_list([{<<"a">>, - 0}, - {<<"b">>, - 1}, - {<<"c">>, - 2}])), - [<<"a">>, <<"b">>, <<"c">>]). + gleam@expect:equal( + gleam@map_dict:keys( + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]) + ), + [<<"a">>, <<"b">>, <<"c">>] + ). values_test() -> - gleam@expect:equal(gleam@map_dict:values(gleam@map_dict:from_list([{<<"a">>, - 0}, - {<<"b">>, - 1}, - {<<"c">>, - 2}])), - [0, 1, 2]). + gleam@expect:equal( + gleam@map_dict:values( + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]) + ), + [0, 1, 2] + ). take_test() -> - gleam@expect:equal(gleam@map_dict:take(gleam@map_dict:from_list([{<<"a">>, - 0}, - {<<"b">>, - 1}, - {<<"c">>, - 2}]), - [<<"a">>, <<"b">>, <<"d">>]), - gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}])). + gleam@expect:equal( + gleam@map_dict:take( + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]), + [<<"a">>, <<"b">>, <<"d">>] + ), + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}]) + ). drop_test() -> - gleam@expect:equal(gleam@map_dict:drop(gleam@map_dict:from_list([{<<"a">>, - 0}, - {<<"b">>, - 1}, - {<<"c">>, - 2}]), - [<<"a">>, <<"b">>, <<"d">>]), - gleam@map_dict:from_list([{<<"c">>, 2}])). + gleam@expect:equal( + gleam@map_dict:drop( + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]), + [<<"a">>, <<"b">>, <<"d">>] + ), + gleam@map_dict:from_list([{<<"c">>, 2}]) + ). merge_test() -> A = gleam@map_dict:from_list([{<<"a">>, 2}, {<<"c">>, 4}, {<<"d">>, 3}]), B = gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]), - gleam@expect:equal(gleam@map_dict:merge(A, B), - gleam@map_dict:from_list([{<<"a">>, 0}, - {<<"b">>, 1}, - {<<"c">>, 2}, - {<<"d">>, 3}])), - gleam@expect:equal(gleam@map_dict:merge(B, A), - gleam@map_dict:from_list([{<<"a">>, 2}, - {<<"b">>, 1}, - {<<"c">>, 4}, - {<<"d">>, 3}])). + gleam@expect:equal( + gleam@map_dict:merge(A, B), + gleam@map_dict:from_list( + [{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}, {<<"d">>, 3}] + ) + ), + gleam@expect:equal( + gleam@map_dict:merge(B, A), + gleam@map_dict:from_list( + [{<<"a">>, 2}, {<<"b">>, 1}, {<<"c">>, 4}, {<<"d">>, 3}] + ) + ). delete_test() -> - gleam@expect:equal(gleam@map_dict:delete(gleam@map_dict:delete(gleam@map_dict:from_list([{<<"a">>, - 0}, - {<<"b">>, - 1}, - {<<"c">>, - 2}]), - <<"a">>), - <<"d">>), - gleam@map_dict:from_list([{<<"b">>, 1}, {<<"c">>, 2}])). + gleam@expect:equal( + gleam@map_dict:delete( + gleam@map_dict:delete( + gleam@map_dict:from_list( + [{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}] + ), + <<"a">> + ), + <<"d">> + ), + gleam@map_dict:from_list([{<<"b">>, 1}, {<<"c">>, 2}]) + ). update_test() -> Dict = gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}]), @@ -124,28 +128,30 @@ update_test() -> {error, _} -> 0 end end, - gleam@expect:equal(gleam@map_dict:update(Dict, <<"a">>, IncOrZero), - gleam@map_dict:from_list([{<<"a">>, 1}, - {<<"b">>, 1}, - {<<"c">>, 2}])), - gleam@expect:equal(gleam@map_dict:update(Dict, <<"b">>, IncOrZero), - gleam@map_dict:from_list([{<<"a">>, 0}, - {<<"b">>, 2}, - {<<"c">>, 2}])), - gleam@expect:equal(gleam@map_dict:update(Dict, <<"z">>, IncOrZero), - gleam@map_dict:from_list([{<<"a">>, 0}, - {<<"b">>, 1}, - {<<"c">>, 2}, - {<<"z">>, 0}])). + gleam@expect:equal( + gleam@map_dict:update(Dict, <<"a">>, IncOrZero), + gleam@map_dict:from_list([{<<"a">>, 1}, {<<"b">>, 1}, {<<"c">>, 2}]) + ), + gleam@expect:equal( + gleam@map_dict:update(Dict, <<"b">>, IncOrZero), + gleam@map_dict:from_list([{<<"a">>, 0}, {<<"b">>, 2}, {<<"c">>, 2}]) + ), + gleam@expect:equal( + gleam@map_dict:update(Dict, <<"z">>, IncOrZero), + gleam@map_dict:from_list( + [{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}, {<<"z">>, 0}] + ) + ). fold_test() -> - Dict = gleam@map_dict:from_list([{<<"a">>, 0}, - {<<"b">>, 1}, - {<<"c">>, 2}, - {<<"d">>, 3}]), + Dict = gleam@map_dict:from_list( + [{<<"a">>, 0}, {<<"b">>, 1}, {<<"c">>, 2}, {<<"d">>, 3}] + ), Add = fun(_, V, Acc) -> V + Acc end, gleam@expect:equal(gleam@map_dict:fold(Dict, 0, Add), 6), Concat = fun(K, _, Acc) -> gleam@string:append(Acc, K) end, gleam@expect:equal(gleam@map_dict:fold(Dict, <<"">>, Concat), <<"abcd">>), - gleam@expect:equal(gleam@map_dict:fold(gleam@map_dict:from_list([]), 0, Add), - 0). + gleam@expect:equal( + gleam@map_dict:fold(gleam@map_dict:from_list([]), 0, Add), + 0 + ). |