tahoe-lafs/integration/vectors.py

16 lines
339 B
Python
Raw Normal View History

2022-12-22 17:13:12 +00:00
"""
A module that loads pre-generated test vectors.
:ivar CHK_PATH: The path of the file containing CHK test vectors.
:ivar chk: The CHK test vectors.
"""
from yaml import safe_load
from pathlib import Path
2022-12-22 17:13:12 +00:00
CHK_PATH: Path = Path(__file__).parent / "_vectors_chk.yaml"
with CHK_PATH.open() as f:
2022-12-22 17:13:12 +00:00
chk: dict[str, str] = safe_load(f)