aboutsummaryrefslogtreecommitdiff
path: root/bundle/Vundle.vim/test/files/test.erl
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/Vundle.vim/test/files/test.erl')
-rw-r--r--bundle/Vundle.vim/test/files/test.erl20
1 files changed, 0 insertions, 20 deletions
diff --git a/bundle/Vundle.vim/test/files/test.erl b/bundle/Vundle.vim/test/files/test.erl
deleted file mode 100644
index 1672953..0000000
--- a/bundle/Vundle.vim/test/files/test.erl
+++ /dev/null
@@ -1,20 +0,0 @@
--module(mmc_logmon_sup).
--behaviour(supervisor).
--export([init/1]).
-
-init(_) ->
- {ok, {
- {one_for_one, 5, 1},
- [
- {listener,
- {aaa, start_link, []},
- permanent, 100, worker,
- [aaa]
- },
- {server,
- {bbb, start_link, []},
- permanent, 100, worker,
- [bbb]
- }
- ]
- }}.