"""Fixtures for tests in the impress core application""" from unittest import mock import pytest USER = "user" TEAM = "team" VIA = [USER, TEAM] @pytest.fixture def mock_user_teams(): """Mock for the "teams" property on the User model.""" with mock.patch( "core.models.User.teams", new_callable=mock.PropertyMock ) as mock_teams: yield mock_teams