File size: 751 Bytes
31747f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
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"