summaryrefslogtreecommitdiffstats
path: root/test/test_rule_properties.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
commit2fe34b6444502079dc0b84365ce82dbc92de308e (patch)
tree8fedcab52bbbc3db6c5aa909a88a7a7b81685018 /test/test_rule_properties.py
parentInitial commit. (diff)
downloadansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.tar.xz
ansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.zip
Adding upstream version 6.17.2.upstream/6.17.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/test_rule_properties.py')
-rw-r--r--test/test_rule_properties.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/test_rule_properties.py b/test/test_rule_properties.py
new file mode 100644
index 0000000..7db3afd
--- /dev/null
+++ b/test/test_rule_properties.py
@@ -0,0 +1,16 @@
+"""Tests related to rule properties."""
+from ansiblelint.rules import RulesCollection
+
+
+def test_severity_valid(default_rules_collection: RulesCollection) -> None:
+ """Test that rules collection only has allow-listed severities."""
+ valid_severity_values = [
+ "VERY_HIGH",
+ "HIGH",
+ "MEDIUM",
+ "LOW",
+ "VERY_LOW",
+ "INFO",
+ ]
+ for rule in default_rules_collection:
+ assert rule.severity in valid_severity_values