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>
4 lines
293 B
Python
4 lines
293 B
Python
from app.permissions.definitions import ALL_PERMISSIONS
|
|
def test_contract_permissions_registered():
|
|
for p in ("payment.workspaces.manage","payment.psp_connections.test","payment.merchant_accounts.activate","payment.transactions.view","payment.ledger.view"): assert p in ALL_PERMISSIONS
|