summaryrefslogtreecommitdiffstats
path: root/test/test_file_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_file_utils.py')
-rw-r--r--test/test_file_utils.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/test_file_utils.py b/test/test_file_utils.py
index b7b9115..74f1934 100644
--- a/test/test_file_utils.py
+++ b/test/test_file_utils.py
@@ -1,4 +1,5 @@
"""Tests for file utility functions."""
+
from __future__ import annotations
import copy
@@ -59,7 +60,7 @@ def test_expand_path_vars(monkeypatch: MonkeyPatch) -> None:
pytest.param(Path("$TEST_PATH"), "/test/path", id="pathlib.Path"),
pytest.param("$TEST_PATH", "/test/path", id="str"),
pytest.param(" $TEST_PATH ", "/test/path", id="stripped-str"),
- pytest.param("~", os.path.expanduser("~"), id="home"), # noqa: PTH:111
+ pytest.param("~", os.path.expanduser("~"), id="home"), # noqa: PTH111
),
)
def test_expand_paths_vars(
@@ -236,7 +237,7 @@ def test_discover_lintables_umlaut(monkeypatch: MonkeyPatch) -> None:
"tasks",
id="33",
), # content should determine is tasks
- pytest.param("examples/collection/galaxy.yml", "galaxy", id="34"),
+ pytest.param("examples/.collection/galaxy.yml", "galaxy", id="34"),
pytest.param("examples/meta/runtime.yml", "meta-runtime", id="35"),
pytest.param("examples/meta/changelogs/changelog.yaml", "changelog", id="36"),
pytest.param("examples/inventory/inventory.yml", "inventory", id="37"),
@@ -258,6 +259,12 @@ def test_discover_lintables_umlaut(monkeypatch: MonkeyPatch) -> None:
"playbook",
id="43",
), # content should determine it as a play
+ pytest.param(
+ "plugins/modules/fake_module.py",
+ "plugin",
+ id="44",
+ ),
+ pytest.param("examples/meta/changelogs/changelog.yml", "changelog", id="45"),
),
)
def test_kinds(path: str, kind: FileType) -> None: