summaryrefslogtreecommitdiffstats
path: root/test/test_prerun.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_prerun.py')
-rw-r--r--test/test_prerun.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_prerun.py b/test/test_prerun.py
new file mode 100644
index 0000000..1549756
--- /dev/null
+++ b/test/test_prerun.py
@@ -0,0 +1,11 @@
+"""Tests for ansible_compat.prerun module."""
+from pathlib import Path
+
+from ansible_compat.prerun import get_cache_dir
+
+
+def test_get_cache_dir_relative() -> None:
+ """Test behaviors of get_cache_dir."""
+ relative_path = Path()
+ abs_path = relative_path.resolve()
+ assert get_cache_dir(relative_path) == get_cache_dir(abs_path)