Current section

Files

Jump to
riak examples exploriak deps meck test meck_test_module.erl
Raw

examples/exploriak/deps/meck/test/meck_test_module.erl

-module(meck_test_module).
-tag(foobar).
-deprecated([a/0]).
-export([a/0, b/0, c/2]).
a() -> a.
b() -> b.
c(A, B) ->
{A, B}.