diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2015-12-06 19:28:07 -0500 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2015-12-06 19:28:07 -0500 |
commit | 769e14c54253a881992dcfcc2ac0ee3367b9a667 (patch) | |
tree | 3c442a1fcd68b6ece3ca1784495564195ea1770d /test | |
parent | bc7ba735eb800a679119795df2fe7cd11e68b225 (diff) |
Actually fix tuple merging.
Full rewrite, code should be understandable now.
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_utils_SUITE.erl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl index 42a9551..b32992d 100644 --- a/test/rebar_utils_SUITE.erl +++ b/test/rebar_utils_SUITE.erl @@ -259,6 +259,13 @@ tup_merge(_Config) -> ) ), ?assertEqual( + [{l, a}, {r, a, b}, {s, a}, {s, b}], + rebar_utils:tup_umerge( + rebar_utils:tup_sort([{r, a, b}, {s, a}, {l, a}]), + rebar_utils:tup_sort([{s, b}]) + ) + ), + ?assertEqual( [{a,b,b},{a,b},a,{a,a},{a,a,a},{b,b},{b,b,b},b,{b,a,a},{b,a},{z,b},{z,b,b},z,{z,a},{z,a,a}], rebar_utils:tup_umerge( rebar_utils:tup_sort([{a,b,b},{b,b},{a,b},{b,b,b},{z,b},{z,b,b},a,b,z]), |