diff options
author | Viacheslav V. Kovalev <kovyl2404@gmail.com> | 2015-04-22 18:56:15 +0300 |
---|---|---|
committer | Viacheslav V. Kovalev <kovyl2404@gmail.com> | 2015-04-22 18:56:15 +0300 |
commit | d821757152be83d2f473d4d4e2157dba72a6d345 (patch) | |
tree | ff6e34724e27f1644d6a8378fb1190853d85fc13 /test | |
parent | 0b682e364da25287aa45784150702013f4c4aee0 (diff) | |
parent | e255529da5c2366f1a9c4eb823d3c3d02c237eae (diff) |
Merge remote-tracking branch 'my/app-discover-profile-duplication' into app-discover-profile-duplication
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_utils_SUITE.erl | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl index 98e7e58..ce26bbc 100644 --- a/test/rebar_utils_SUITE.erl +++ b/test/rebar_utils_SUITE.erl @@ -21,8 +21,7 @@ task_with_flag_with_trailing_comma/1, task_with_flag_with_commas/1, task_with_multiple_flags/1, - special_task_do/1, - tup_umerge_deduplication/1]). + special_task_do/1]). -include_lib("common_test/include/ct.hrl"). -include_lib("eunit/include/eunit.hrl"). @@ -30,8 +29,7 @@ all() -> - [{group, args_to_tasks}, - tup_umerge_deduplication + [{group, args_to_tasks} ]. groups() -> @@ -120,12 +118,4 @@ special_task_do(_Config) -> [{"foo", []}, {"do", ["bar,", "baz"]}] = rebar_utils:args_to_tasks(["foo,", "do", "bar,", - "baz"]). - -tup_umerge_deduplication(_Config) -> - Old = [{key,c},{key,b},{key,a}], - New = [{key, a}], - ?assertEqual( - [{key, a}, {key, c}, {key, b}], - rebar_utils:tup_umerge(New, Old) - ). + "baz"]).
\ No newline at end of file |