moto/tests/test_wafv2/test_wafv2_rules.py
2024-01-27 19:38:09 +00:00

11 lines
232 B
Python

import boto3
from moto import mock_aws
@mock_aws
def test_list_rule_groups():
client = boto3.client("wafv2", region_name="us-east-2")
resp = client.list_rule_groups(Scope="CLOUDFRONT")
assert resp["RuleGroups"] == []