test_transfer.py 375 B

1234567891011121314151617181920
  1. import unittest
  2. from backend.app.plugin.module_payment.account import AccountService
  3. class TestAlipayIntegration(unittest.TestCase):
  4. """测试支付宝转账"""
  5. AccountService.create_account_service(
  6. auth=AuthSchema(),
  7. data=AccountCreateSchema(
  8. enterprise_id="123456",
  9. )
  10. )
  11. if __name__ == "__main__":
  12. unittest.main()