/
/
/
1"""Shared fixtures for the Bandcamp provider tests."""
2
3from __future__ import annotations
4
5from unittest.mock import Mock
6
7import pytest
8
9
10@pytest.fixture
11def manifest_mock() -> Mock:
12 """Return a mock provider manifest."""
13 manifest = Mock()
14 manifest.domain = "bandcamp"
15 return manifest
16