-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(payments): use test record loader
- Loading branch information
Showing
2 changed files
with
32 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
erpnext/accounts/doctype/payment_request/test_records.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[ | ||
{ | ||
"doctype": "DocType", | ||
"module": "Accounts", | ||
"custom": 1, | ||
"fields": [{"label": "Name", "fieldname": "name", "fieldtype": "Data"}], | ||
"name": "Test Gateway Settings" | ||
}, | ||
{ | ||
"doctype": "Test Gateway Settings", | ||
"name": "_Test Gateway Controller" | ||
}, | ||
{ | ||
"doctype": "Payment Gateway", | ||
"gateway": "_Test Gateway", | ||
"gateway_settings": "Test Gateway Settings", | ||
"gateway_controller": "_Test Gateway Controller" | ||
}, | ||
{ | ||
"doctype": "Payment Gateway Account", | ||
"is_default": 1, | ||
"payment_gateway": "_Test Gateway", | ||
"payment_account": "_Test Bank - _TC", | ||
"currency": "INR" | ||
}, | ||
{ | ||
"doctype": "Payment Gateway Account", | ||
"payment_gateway": "_Test Gateway", | ||
"payment_account": "_Test Bank USD - _TC", | ||
"currency": "USD" | ||
} | ||
] |