diff options
author | Viacheslav V. Kovalev <kovyl2404@gmail.com> | 2015-06-27 00:28:25 +0300 |
---|---|---|
committer | Viacheslav V. Kovalev <kovyl2404@gmail.com> | 2015-06-27 00:28:25 +0300 |
commit | 93cfa4b0b350656b509918e1506dfdbc0891abdc (patch) | |
tree | ed1f2dd46c72351824afd98675c5a419a831148c /test | |
parent | 9a83c35a6fbfcebd1ca92c166efc930fc0f5d4c5 (diff) | |
parent | ebfdbc695ef8bf615ab28fba1d8c22752f21e1cd (diff) |
Merge branch 'fix-comments' of git://github.com/Taure/rebar3 into Taure-fix-comments
Conflicts:
src/rebar_prv_common_test.erl
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_test_utils.erl | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/test/rebar_test_utils.erl b/test/rebar_test_utils.erl index 639a293..0c65cb2 100644 --- a/test/rebar_test_utils.erl +++ b/test/rebar_test_utils.erl @@ -215,7 +215,6 @@ check_results(AppDir, Expected) -> ?assertNotEqual(false, lists:keyfind(Name, 1, DepsNames)) ; ({dep, Name, Vsn}) -> ct:pal("Dep Name: ~p, Vsn: ~p", [Name, Vsn]), - ct:pal("DepNames: ~p~n", [DepsNames]), case lists:keyfind(Name, 1, DepsNames) of false -> error({dep_not_found, Name}); @@ -275,28 +274,11 @@ check_results(AppDir, Expected) -> LibDir = filename:join([ReleaseDir, Name, "lib"]), {ok, RelLibs} = file:list_dir(LibDir), - ct:pal("RelLibs: ~p~n", [RelLibs]), IsSymLinkFun = fun(X) -> ec_file:is_symlink(filename:join(LibDir, X)) end, - IsDirFun = - fun(X) -> - filelib:is_dir(filename:join([LibDir, X])) - end, - DevMode = - case os:type() of - {unix, _} -> - lists:all(IsSymLinkFun, RelLibs); - {win32, _} -> - Bool = lists:all(IsDirFun, RelLibs), - case ExpectedDevMode of - true -> - Bool; - false -> - not Bool - end - end, + DevMode = lists:all(IsSymLinkFun, RelLibs), ?assertEqual(ExpectedDevMode, DevMode), %% throws not_found if it doesn't exist |