Is it possible to mock a sequence of return values with ExUnit Mock the same way meck provides this functionality in Erlang?
...
meck:new(my_module),
meck:sequence(my_module, method, 1, [Response1, Response2]),
meck:unload(module),
...
If not, is it possible to successfully combine meck and mock in the same unit test ExUnit Elixir module?