8 lines
209 B
Python
8 lines
209 B
Python
# tests/test_api.py
|
|
import json, pytest
|
|
from pathlib import Path
|
|
|
|
# We'll import helpers once they exist
|
|
# For now just verify the file can be imported
|
|
def test_import():
|
|
from app import api # noqa: F401
|