summaryrefslogtreecommitdiff
path: root/inttest/code_path_no_recurse/code_path_no_recurse_rt.erl
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/code_path_no_recurse/code_path_no_recurse_rt.erl')
-rw-r--r--inttest/code_path_no_recurse/code_path_no_recurse_rt.erl19
1 files changed, 0 insertions, 19 deletions
diff --git a/inttest/code_path_no_recurse/code_path_no_recurse_rt.erl b/inttest/code_path_no_recurse/code_path_no_recurse_rt.erl
deleted file mode 100644
index d884bcc..0000000
--- a/inttest/code_path_no_recurse/code_path_no_recurse_rt.erl
+++ /dev/null
@@ -1,19 +0,0 @@
--module(code_path_no_recurse_rt).
--export([files/0,
- run/1]).
-
-files() ->
- [
- {copy, "../../rebar", "rebar"},
- {copy, "rebar.config", "rebar.config"},
- {copy, "src", "src"},
- {copy, "test", "test"},
- {copy, "deps", "deps"}
- ].
-
-run(_Dir) ->
- retest:log(info, "Compile project~n"),
- {ok, _} = retest:sh("./rebar -v compile"),
- retest:log(info, "Run eunit with referenced deps on the code path~n"),
- {ok, _} = retest:sh("./rebar -v eunit"),
- ok.