Add independent payment-service (port 8012, payment_db) with foundation licensing, BYO-PSP, merchant accounts, idempotent requests, callbacks, and immutable ledger. Co-authored-by: Cursor <cursoragent@cursor.com>
6 lines
229 B
Python
6 lines
229 B
Python
import pytest
|
|
from app.core.entitlements import CoreEntitlementClient
|
|
from app.tests.conftest import TENANT_A
|
|
@pytest.mark.asyncio
|
|
async def test_stub_entitlement(): assert await CoreEntitlementClient().has_access(TENANT_A)
|