summaryrefslogtreecommitdiff
path: root/test/rebar_test_utils.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2015-02-04 21:26:48 +0000
committerFred Hebert <mononcqc@ferd.ca>2015-02-11 21:57:58 +0000
commit748a046133fa5b0b2570f4675c223326299d711a (patch)
treed011057cb2c753be82c80aaecfa8c9555f480385 /test/rebar_test_utils.erl
parent9fb35fe6defb07dde99ba4442a66e3e6719c4d49 (diff)
Partial work + Failing tests
The problem with the current effort is handling of transitive dependency upgrades and possible values.
Diffstat (limited to 'test/rebar_test_utils.erl')
-rw-r--r--test/rebar_test_utils.erl8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/rebar_test_utils.erl b/test/rebar_test_utils.erl
index af40995..827d134 100644
--- a/test/rebar_test_utils.erl
+++ b/test/rebar_test_utils.erl
@@ -54,14 +54,6 @@ run_and_check(Config, RebarConfig, Command, Expect) ->
{ok, Expected} ->
{ok, _} = Res,
check_results(AppDir, Expected);
- {unlocked, Expected} ->
- ct:pal("Expected: ~p", [Expected]),
- {ok, ResState} = Res,
- Locks = rebar_state:lock(ResState),
- ct:pal("Locks: ~p", [Locks]),
- ?assertEqual(lists:sort(Expected),
- lists:sort([rebar_app_info:name(Lock)
- || Lock <- Locks]));
return ->
Res
end.