towerops/test/test_helper.exs
2026-01-03 14:41:28 -06:00

11 lines
382 B
Elixir

ExUnit.start()
# Exclude integration tests by default
# Run them with: mix test --only integration
ExUnit.configure(exclude: [:integration])
# Define mocks for testing
Mox.defmock(Towerops.Monitoring.PingMock, for: Towerops.Monitoring.PingBehaviour)
Mox.defmock(Towerops.Snmp.PollerMock, for: Towerops.Snmp.PollerBehaviour)
Ecto.Adapters.SQL.Sandbox.mode(Towerops.Repo, :manual)