Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package stubs |
||
2 | |||
3 | // BillsCreateDStvPaymentResponse is a dummy JSOn response for checking a dstv user |
||
4 | func BillsCreateDStvPaymentResponse() string { |
||
5 | return ` |
||
6 | { |
||
7 | "status": "success", |
||
8 | "message": "Bill payment successful", |
||
9 | "data": { |
||
10 | "phone_number": "+23490803840303", |
||
11 | "amount": 500, |
||
12 | "network": "9MOBILE", |
||
13 | "flw_ref": "CF-FLYAPI-20200311081921359990", |
||
14 | "tx_ref": "BPUSSD1583957963415840" |
||
15 | } |
||
16 | } |
||
17 | ` |
||
18 | } |
||
19 | |||
20 | // BillsValidateDstvResponse is a dummy response for validating a DStv payment |
||
21 | func BillsValidateDstvResponse() string { |
||
22 | return ` |
||
23 | { |
||
42 |