Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 558 Bytes

File metadata and controls

33 lines (23 loc) · 558 Bytes

Tests

Running Tests

# Run all tests
pytest

# Run with verbose output
pytest -v

# Run specific test
pytest tests/test_basic.py::TestAPIKeyValidation

Test Coverage

test_basic.py - Core logic validation (13 tests)

  • API key format validation
  • Default filter injection logic
  • Enable graph default behavior
  • CLI argument parsing format
  • Retry logic calculations
  • Error code detection (4xx vs 5xx)

Test Results

13 passed in 0.43s

All tests validate the core business logic without requiring external dependencies.