Mox is a library for defining concurrent mocks in Elixir.
The library follows the principles outlined in "Mocks and explicit contracts", summarized below:
-
No ad-hoc mocks. You can only create mocks based on behaviours
-
No dynamic generation of modules during tests. Mocks are preferably defined in your
test_helper.exs
or in asetup_all
block and not per test -
Concurrency support. Tests using the same mock can still use
async: true
-
Rely on pattern matching and function clauses for asserting on the input instead of complex expectation rules
See the documentation for more information.
Just add mox
to your list of dependencies in mix.exs
:
def deps do
[
{:mox, "~> 0.3", only: :test}
]
end
Mox should be automatically started unless the :applications
key is set inside def application
in your mix.exs
. In such cases, you need to remove the :applications
key in favor of :extra_applications
or call Application.ensure_all_started(:mox)
in your test/test_helper.exs
.
Copyright 2017 Plataformatec
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.