summaryrefslogtreecommitdiff
path: root/deps/meck/test/cover_test_module.dontcompile
blob: 06e88967a7c53d4354c7ed009245955680ac4e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%% -*- mode: erlang -*-

%% This file needs not to have the extension .erl, since otherwise
%% rebar will try to compile it, which won't work since it requires
%% special compilation options.  See meck_tests:cover_test_.

-module(cover_test_module).
-export([a/0, b/0, c/2]).

%% a/0 is defined in include/cover_test.hrl.  We don't put the full
%% path here, since it should be provided as a compiler option.
-include("cover_test.hrl").

%% Also, make that this module was compiled with -DTEST.
-ifdef(TEST).
b() ->
    b.
-endif.

c(A, B) ->
    {A, B}.