blob: 7a91a4c90cca79c3a106ee60545d94cbfb508da6 (
plain)
1
2
3
4
5
6
7
8
9
|
"""Test for ansible_compat.loaders module."""
from pathlib import Path
from ansible_compat.loaders import colpath_from_path
def test_colpath_from_path() -> None:
"""Test colpath_from_path non existing path."""
assert colpath_from_path(Path("/foo/bar/")) is None
|