├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── doc └── overview.edoc ├── include └── em.hrl ├── rebar.config ├── rebar3 ├── rebar3.1 ├── shell.nix ├── src ├── em.app.src ├── em.appup.src ├── em.erl └── em_module_loader.erl └── test ├── em_test.erl └── module_not_to_call.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/README.md -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /include/em.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/include/em.hrl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/rebar3 -------------------------------------------------------------------------------- /rebar3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/rebar3.1 -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/shell.nix -------------------------------------------------------------------------------- /src/em.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/src/em.app.src -------------------------------------------------------------------------------- /src/em.appup.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/src/em.appup.src -------------------------------------------------------------------------------- /src/em.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/src/em.erl -------------------------------------------------------------------------------- /src/em_module_loader.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/src/em_module_loader.erl -------------------------------------------------------------------------------- /test/em_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/test/em_test.erl -------------------------------------------------------------------------------- /test/module_not_to_call.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheyll/erlymock/HEAD/test/module_not_to_call.erl --------------------------------------------------------------------------------