summaryrefslogtreecommitdiffstats
path: root/test/test_internal_rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_internal_rules.py')
-rw-r--r--test/test_internal_rules.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_internal_rules.py b/test/test_internal_rules.py
new file mode 100644
index 0000000..b949238
--- /dev/null
+++ b/test/test_internal_rules.py
@@ -0,0 +1,8 @@
+"""Tests for internal rules."""
+from ansiblelint._internal.rules import BaseRule
+
+
+def test_base_rule_url() -> None:
+ """Test that rule URL is set to expected value."""
+ rule = BaseRule()
+ assert rule.url == "https://ansible-lint.readthedocs.io/rules/"