Spaces:
Paused
Paused
| # 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" | |