import pytest @pytest.fixture def graphql_product_get_product_response(): """Typical graphql_product response for get product query.""" return { 'artists': [{ 'artistName': 'Test Artist', 'artistType': 'primary_artist' }], 'productId': '99999', 'displayStatus': 'completed', 'metaLanguage': 'ENG', 'productName': 'Test Orchard Product', 'version': None, 'deliveredVersion': None, 'genreId': 5, 'subgenreId': 63, 'imprint': 'Something', 'cLine': '2020 Something', 'tracks': [], }