"""Fixtures for lambda testing.""" import pytest from aws_testing_utils import cloudwatch_log_handler, lambda_handler @pytest.fixture def lambda_client(): """Client for lambda.""" return lambda_handler.LambdaHandler() @pytest.fixture() def cloudwatch_log_client(): """Client for cloudwatch logs.""" return cloudwatch_log_handler.CloudwatchLogHandler()