"""Tests for the base endpoint handlers.""" from moneyhub.constants.constants import DefaultEndpoints def test_health_check(fixture_client): """Test the health check.""" result = fixture_client.get(DefaultEndpoints.HEALTH_CHECK) assert result.status_code == 200 assert result.json() == {'status': 'ok'}