exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit bf3c7dd10fea30d3c59849a21cefcb79c7c940e4
parent 0805c62aeeab7efb54ad43c31591c4a3c3fb2008
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 14 Jan 2020 23:59:16 +0100

expand test suite

Diffstat:
Msrc/util/test_payto.c | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/util/test_payto.c b/src/util/test_payto.c @@ -46,10 +46,18 @@ main (int argc, "account"); CHECK ("payto://x-taler-bank/localhost/account", r); + r = TALER_payto_xtalerbank_make ("https://localhost", + "account"); + CHECK ("payto://x-taler-bank/localhost/account", + r); r = TALER_payto_xtalerbank_make ("http://localhost:80/", "account"); CHECK ("payto://x-taler-bank/localhost:80/account", r); + r = TALER_payto_xtalerbank_make ("http://localhost:80", + "account"); + CHECK ("payto://x-taler-bank/localhost:80/account", + r); r = TALER_payto_xtalerbank_make ("http://localhost/", "account"); CHECK ("payto://x-taler-bank/localhost:80/account",