aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_sdc2_resource.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sdc2_resource.py')
-rw-r--r--tests/test_sdc2_resource.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_sdc2_resource.py b/tests/test_sdc2_resource.py
index e4d25c1..b9a3211 100644
--- a/tests/test_sdc2_resource.py
+++ b/tests/test_sdc2_resource.py
@@ -12,3 +12,7 @@ def test_build_exclude_types_query():
assert query.count("excludeTypes=") == 12
with raises(ValueError):
parse_qs(query)["excludeTypes"].index(resource_type.value)
+ for other_resource_type in ResoureTypeEnum:
+ if other_resource_type == resource_type:
+ continue
+ parse_qs(query)["excludeTypes"].index(other_resource_type.value)