lmcache-demo / tests /test_docs.py
Estone's picture
Upload tests/test_docs.py with huggingface_hub
79a06c0 verified
Raw
History Blame Contribute Delete
502 Bytes
# SPDX-License-Identifier: Apache-2.0
import os
import pytest
def test_docs_directory_exists():
"""Test that docs directory exists."""
docs_path = os.path.join(os.path.dirname(__file__), '..', 'docs')
assert os.path.exists(docs_path), "docs directory not found"
def test_setup_guide_exists():
"""Test that setup guide exists."""
guide_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'setup_guide.md')
assert os.path.exists(guide_path), "setup_guide.md not found"