moto/tests/test_efs/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
348 B
Python
Raw Normal View History

import boto3
import pytest
2024-01-07 12:03:33 +00:00
from moto import mock_aws
@pytest.fixture(scope="function", name="ec2")
def fixture_ec2():
2024-01-07 12:03:33 +00:00
with mock_aws():
yield boto3.client("ec2", region_name="us-east-1")
@pytest.fixture(scope="function", name="efs")
def fixture_efs():
2024-01-07 12:03:33 +00:00
with mock_aws():
yield boto3.client("efs", region_name="us-east-1")