17 lines
296 B
Python
17 lines
296 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Unit tests for CrossFitBooker initialization
|
|
"""
|
|
|
|
import pytest
|
|
import os
|
|
import sys
|
|
|
|
# Add the parent directory to the path
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
pytest.main([__file__, "-v"]) |