erlang eunit is a eunit compile and coverage tools on Emacs. I think it's very useful emacs plugin. but nobody does not care it.
It is a advantage for high development performance in erlang language. On OSX use homebrew to install erlang. It's installed default.
write blew in ~/.emacs
That's all.
blow is a list of shortcut in erlang-eunit
It is a advantage for high development performance in erlang language. On OSX use homebrew to install erlang. It's installed default.
write blew in ~/.emacs
(setq load-path (cons "/usr/local/Cellar/erlang/R14B03/lib/erlang/lib/tools-2.6.6.4/emacs" load-path))
(setq erlang-root-dir "/usr/local/Cellar/erlang/R14B03")
(setq exec-path (cons "/usr/local/Cellar/erlang/R14B03/bin" exec-path))
(setq erlang-man-root-dir "/usr/local/Cellar/erlang/R14B03/share/man")
(require 'erlang-start)
(require 'erlang-flymake)
(require 'erlang-eunit)That's all.
blow is a list of shortcut in erlang-eunit
'(("\C-c\C-et" erlang-eunit-toggle-src-and-test-file-other-window)
("\C-c\C-ek" erlang-eunit-compile-and-run-module-tests)
("\C-c\C-ej" erlang-eunit-compile-and-run-current-test)
("\C-c\C-el" erlang-eunit-compile-and-run-recent)
("\C-c\C-ec" erlang-eunit-compile-and-run-module-tests-under-cover)
("\C-c\C-ev" erlang-eunit-cover-compile)
("\C-c\C-ea" erlang-eunit-analyze-coverage)))

