blob: 01cc8925135bbe70685bb393425760119b9ad2be (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""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
|