moto/tests/test_rds/test_db_cluster_params.py

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

12 lines
264 B
Python
Raw Normal View History

2023-04-08 10:33:09 +00:00
import boto3
2024-01-07 12:03:33 +00:00
from moto import mock_aws
2023-04-08 10:33:09 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2023-04-08 10:33:09 +00:00
def test_describe_db_cluster_parameters():
client = boto3.client("rds", "us-east-2")
resp = client.describe_db_cluster_parameters(DBClusterParameterGroupName="group")
assert resp["Parameters"] == []