"""Fixtures with test data.""" dynamo_active_record = { 'isrc': { 'S': 'ABC123456' }, 'territories': { 'M': { 'US': { 'M': { 'tuid': { 'N': 12345 } } }, 'UK': { 'M': { 'tuid': { 'N': 12345 } } }, 'RU': { 'M': { 'tuid': { 'N': 12345 } } } } }, 'locked_territories': { 'M': { 'UA': { 'M': { 'reason': { 'S': 'Conflict with WMG' } } } } } } dynamo_active_record_with_internal_conflict = { 'isrc': { 'S': 'ABC123456' }, 'territories': { 'M': { 'US': { 'L': [ {'M': {'tuid': {'N': 12345}}}, {'M': {'tuid': {'N': 12346}}}, ] }, 'UK': { 'M': { 'tuid': { 'N': 12345 } } }, 'RU': { 'M': { 'tuid': { 'N': 12345 } } } } }, 'locked_territories': { 'M': { 'UA': { 'M': { 'reason': { 'S': 'Conflict with WMG' } } } } } }