"""Shared fixtures.""" import json import pytest @pytest.fixture def mock_event(): """Sample lambda event.""" with open('tests/sample_event.json') as f: return json.load(f)