Spaces:
Sleeping
Sleeping
""" | |
Test suite for Scribbled Docs Notes - Medical SOAP Note Generator | |
This test suite provides comprehensive testing for: | |
- SOAP note generation functionality | |
- OCR text extraction from medical images | |
- Gradio web interface components | |
- File handling and validation | |
- Error handling and edge cases | |
- Integration workflows | |
Usage: | |
Run all tests: python -m pytest tests/ | |
Run specific test: python -m pytest tests/test_soap_generation.py | |
Run with coverage: python -m pytest --cov=app tests/ | |
""" | |
import sys | |
import os | |
# Add the parent directory to the Python path so tests can import app modules | |
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | |
__version__ = "1.0.0" | |
__author__ = "Scribbled Docs Notes Team" |