summaryrefslogtreecommitdiff
path: root/inttest/code_path_no_recurse/test/codepath_tests.erl
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/code_path_no_recurse/test/codepath_tests.erl')
-rw-r--r--inttest/code_path_no_recurse/test/codepath_tests.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/inttest/code_path_no_recurse/test/codepath_tests.erl b/inttest/code_path_no_recurse/test/codepath_tests.erl
deleted file mode 100644
index 01a1d2a..0000000
--- a/inttest/code_path_no_recurse/test/codepath_tests.erl
+++ /dev/null
@@ -1,12 +0,0 @@
--module(codepath_tests).
--include_lib("eunit/include/eunit.hrl").
-
-codepath_test() ->
- ?assertEqual({module, codepath}, code:ensure_loaded(codepath)),
- ?assertEqual({module, foodep}, code:ensure_loaded(foodep)),
- ?assertEqual({module, bazdep}, code:ensure_loaded(bazdep)),
- ?assert(codepath:codepath()).
-
-unuseddep_test() ->
- ?assertEqual(non_existing, code:which(unuseddep)),
- ?assertEqual({error, nofile}, code:ensure_loaded(unuseddep)).