diff options
| author | Ahmed Abdelhalim <[email protected]> | 2015-06-29 13:59:56 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2015-06-29 13:59:56 +0200 |
| commit | 424850ced3d013ee7ebf5cb6d51293e6a7914c80 (patch) | |
| tree | 2c5aa6bea49eea066e76e9d7c0431694634d9d11 /bundle/Vundle.vim/test/files/test.erl | |
| parent | 5026ad9d7dc5cb8bc2ef319726c2c4aa6b393453 (diff) | |
Install bundle using clone instead of problematic submodule
Diffstat (limited to 'bundle/Vundle.vim/test/files/test.erl')
| -rw-r--r-- | bundle/Vundle.vim/test/files/test.erl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/bundle/Vundle.vim/test/files/test.erl b/bundle/Vundle.vim/test/files/test.erl new file mode 100644 index 0000000..1672953 --- /dev/null +++ b/bundle/Vundle.vim/test/files/test.erl @@ -0,0 +1,20 @@ +-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] + } + ] + }}. |
