summaryrefslogtreecommitdiff
path: root/src/util/test_payto.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-18 01:13:53 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-18 01:13:53 +0100
commitd2d7791c698cee7912fc054660cced40ff2171de (patch)
tree7f05eae6a413948eeb6fe63acbcbe822c5695fc3 /src/util/test_payto.c
parentc805e9cf20d39b17336a05c0879aac028de7488b (diff)
downloadexchange-d2d7791c698cee7912fc054660cced40ff2171de.tar.gz
exchange-d2d7791c698cee7912fc054660cced40ff2171de.tar.bz2
exchange-d2d7791c698cee7912fc054660cced40ff2171de.zip
DCE: only keep x-taler-wire processing functions we actually use/need
Diffstat (limited to 'src/util/test_payto.c')
-rw-r--r--src/util/test_payto.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/util/test_payto.c b/src/util/test_payto.c
index 5807be20b..b7d73f80a 100644
--- a/src/util/test_payto.c
+++ b/src/util/test_payto.c
@@ -42,41 +42,6 @@ main (int argc,
GNUNET_log_setup ("test-payto",
"WARNING",
NULL);
- r = TALER_payto_xtalerbank_make ("https://localhost/",
- "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_make2 ("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");
- r = TALER_payto_xtalerbank_make2 ("http://localhost:80/account");
- CHECK ("payto://x-taler-bank/localhost:80/account",
- r);
- r = TALER_payto_xtalerbank_make2 ("http://localhost/account");
- CHECK ("payto://x-taler-bank/localhost:80/account",
- r);
- r = TALER_xtalerbank_base_url_from_payto (
- "payto://x-taler-bank/localhost/bob");
- CHECK ("https://localhost/",
- r);
- r = TALER_xtalerbank_base_url_from_payto (
- "payto://x-taler-bank/localhost:1080/bob");
- CHECK ("http://localhost:1080/",
- r);
r = TALER_xtalerbank_account_from_payto (
"payto://x-taler-bank/localhost:1080/alice");
CHECK ("alice",