new module with EUnit


/ Published in: Emacs Lisp
Save to your folder(s)



Copy this code and paste it in your HTML
  1. %% Author:
  2. %% Created:
  3. %% Description:
  4. -module().
  5.  
  6. %% ====================================================================
  7. %% Include files
  8. %% ====================================================================
  9.  
  10. -ifdef(EUNIT).
  11. -include_lib("eunit/include/eunit.hrl").
  12. -endif.
  13.  
  14. %% ====================================================================
  15. %% Exported Functions
  16. %% ====================================================================
  17. -export([]).
  18.  
  19. %% ====================================================================
  20. %% API Functions
  21. %% ====================================================================
  22.  
  23.  
  24.  
  25. %% ====================================================================
  26. %% Local Functions
  27. %% ====================================================================
  28.  
  29.  
  30.  
  31. %% ====================================================================
  32. %% Test Functions
  33. %% ====================================================================
  34. -ifdef(EUNIT).
  35. -endif.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.