diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-14 23:59:16 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-14 23:59:16 +0100 |
commit | bf3c7dd10fea30d3c59849a21cefcb79c7c940e4 (patch) | |
tree | 0a1297599d3eef71f89605f068018cefdca77416 /src/util | |
parent | 0805c62aeeab7efb54ad43c31591c4a3c3fb2008 (diff) |
expand test suite
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/test_payto.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/test_payto.c b/src/util/test_payto.c index f966e046f..0a570ee5a 100644 --- 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", |