16 lines
379 B
Python
16 lines
379 B
Python
"""Integration tests for the data-service HTTP API."""
|
|
|
|
import pytest
|
|
|
|
|
|
class TestDataServiceAPI:
|
|
"""Placeholder integration tests -- require a running service."""
|
|
|
|
def test_health_endpoint(self):
|
|
"""GET /health should return 200."""
|
|
pass
|
|
|
|
def test_upload_csv(self):
|
|
"""POST /datasets/upload with a CSV file should return 201."""
|
|
pass
|