feat(Payment): add CREDIT payment method

This commit is contained in:
mono
2026-03-14 23:45:52 -05:00
parent b852772c76
commit 5442a52ff6
3 changed files with 25 additions and 0 deletions

View File

@@ -21,3 +21,4 @@ class TestPaymentMethods(TestCase, LoginMixin):
self.assertIn('CASH', [method.get('value') for method in methods])
self.assertIn('CONFIAR', [method.get('value') for method in methods])
self.assertIn('BANCOLOMBIA', [method.get('value') for method in methods])
self.assertIn('CREDIT', [method.get('value') for method in methods])