@@ -41,6 +41,7 @@ def test_simple_mapping_working(self, aws_client, deploy_cfn_template):
41
41
]
42
42
43
43
@pytest .mark .aws_validated
44
+ @pytest .mark .skip (reason = "not implemented" )
44
45
def test_mapping_with_nonexisting_key (self , aws_client , cleanups , snapshot ):
45
46
"""
46
47
Tries to deploy a resource with a dependency on a mapping key
@@ -67,6 +68,7 @@ def test_mapping_with_nonexisting_key(self, aws_client, cleanups, snapshot):
67
68
snapshot .match ("mapping_nonexisting_key_exc" , e .value .response )
68
69
69
70
@pytest .mark .aws_validated
71
+ @pytest .mark .skip (reason = "not implemented" )
70
72
def test_mapping_with_invalid_refs (self , aws_client , deploy_cfn_template , cleanups , snapshot ):
71
73
"""
72
74
The Mappings section can only include static elements (strings and lists).
@@ -97,6 +99,7 @@ def test_mapping_with_invalid_refs(self, aws_client, deploy_cfn_template, cleanu
97
99
snapshot .match ("mapping_invalid_ref_exc" , e .value .response )
98
100
99
101
@pytest .mark .aws_validated
102
+ @pytest .mark .skip (reason = "not implemented" )
100
103
def test_mapping_maximum_nesting_depth (self , aws_client , cleanups , snapshot ):
101
104
"""
102
105
Tries to deploy a template containing a mapping with a nesting depth of 3.
@@ -124,6 +127,7 @@ def test_mapping_maximum_nesting_depth(self, aws_client, cleanups, snapshot):
124
127
snapshot .match ("mapping_maximum_level_exc" , e .value .response )
125
128
126
129
@pytest .mark .aws_validated
130
+ @pytest .mark .skip (reason = "not implemented" )
127
131
def test_mapping_minimum_nesting_depth (self , aws_client , cleanups , snapshot ):
128
132
"""
129
133
Tries to deploy a template containing a mapping with a nesting depth of 1.
0 commit comments