cindyy287's picture
Upload 23 files
c2fb337 verified
raw
history blame contribute delete
250 Bytes
from app import app
def test_predict():
client = app.test_client()
response = client.post("/predict", json={
"features": [200, 1, 0, 500]
})
assert response.status_code == 200
assert "fraud" in response.json