Navigam's picture
feat: expand task suite to 22 challenges and update reward signal mechanics
6392732
Raw
History Blame Contribute Delete
206 Bytes
from fastapi.testclient import TestClient
from routes import app
def test_billing_protected():
client = TestClient(app)
response = client.get('/api/billing')
assert response.status_code == 401