X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=test%2Fhope_list_SUITE.erl;h=386cdc674ca831a064808082641588fba2a4fae3;hb=HEAD;hp=29b1b386e6f44636f6e4afe48cae5b141f37e688;hpb=dbe73b30584bf349d97eb2caa9801a1a1f642564;p=hope.git diff --git a/test/hope_list_SUITE.erl b/test/hope_list_SUITE.erl index 29b1b38..386cdc6 100644 --- a/test/hope_list_SUITE.erl +++ b/test/hope_list_SUITE.erl @@ -20,6 +20,7 @@ , t_manual_map_result/1 , t_manual_map_rev/1 , t_manual_map_slow/1 + , t_manual_divide/1 ]). @@ -49,6 +50,7 @@ groups() -> , t_manual_map_result , t_manual_map_rev , t_manual_map_slow + , t_manual_divide ], Properties = [parallel], [{?GROUP, Properties, Tests}]. @@ -84,6 +86,35 @@ t_manual_map_slow(_Cfg) -> [2, 3, 4] = hope_list:map_slow([1, 2, 3], F), [] = hope_list:map_slow([], F). +t_manual_divide(_Cfg) -> + try + hope_list:divide([a, b, c], -1) + catch + error:hope_list__divide__size_must_be_a_positive_integer -> ok + end, + try + hope_list:divide([a, b, c], 0) + catch + error:hope_list__divide__size_must_be_a_positive_integer -> ok + end, + [[c], [b], [a]] = hope_list:divide([a, b, c], 1), + [[c], [b, a]] = hope_list:divide([a, b, c], 2), + [[c, b, a]] = hope_list:divide([a, b, c], 3), + [[c, b, a]] = hope_list:divide([a, b, c], 4), + [[c, b, a]] = hope_list:divide([a, b, c], 5), + try + hope_list:divide([], 0) + catch + error:hope_list__divide__size_must_be_a_positive_integer -> ok + end, + try + hope_list:divide([], -1) + catch + error:hope_list__divide__size_must_be_a_positive_integer -> ok + end, + [[f, e], [d, c], [b, a]] = hope_list:divide([a, b, c, d, e, f], 2), + [[f, e, d], [c, b, a]] = hope_list:divide([a, b, c, d, e, f], 3). + %% ============================================================================= %% Generated test cases %% ============================================================================= @@ -112,8 +143,9 @@ t_auto_unique_preserve_order(_Cfg) -> ?TEST(?FORALL(L, ?type:list(), begin Duplicates = L -- lists:usort(L), - hope_list:unique_preserve_order(L) == - lists:reverse(lists:reverse(L) -- Duplicates) + UniquesInOrderA = lists:reverse(lists:reverse(L) -- Duplicates), + UniquesInOrderB = hope_list:unique_preserve_order(L), + UniquesInOrderA == UniquesInOrderB end)). t_auto_hope_list_specs(_Cfg) ->