blob: b87c8826f636859432593ebf24ac8b2647303700 (
plain)
1
2
3
4
5
6
7
8
9
|
from pathlib import Path
from ymlstash import YmlStash
def test_stash_path():
stash = YmlStash("foo")
assert stash.path == Path("foo")
stash = YmlStash(Path("foo"))
assert stash.path == Path("foo")
|