| 1234567891011121314151617181920 |
- import unittest
- from backend.app.plugin.module_payment.account import AccountService
- class TestAlipayIntegration(unittest.TestCase):
- """测试支付宝转账"""
- AccountService.create_account_service(
- auth=AuthSchema(),
- data=AccountCreateSchema(
- enterprise_id="123456",
- )
- )
- if __name__ == "__main__":
- unittest.main()
|