summaryrefslogtreecommitdiffstats
path: root/util/t/urlparse/parse-url
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-09-02 19:34:59 +0200
committermakefu <github@syntax-fehler.de>2013-09-02 19:34:59 +0200
commit4f8ac29f0ca730d48212282605cd61c654a42529 (patch)
tree7b3a6ce5e2d73ce7b495557d0962288047b42770 /util/t/urlparse/parse-url
parenta3675799d1d9a0e7879071b23f1cc066c709efd0 (diff)
urlparse ->uriparse
Diffstat (limited to 'util/t/urlparse/parse-url')
-rwxr-xr-xutil/t/urlparse/parse-url12
1 files changed, 0 insertions, 12 deletions
diff --git a/util/t/urlparse/parse-url b/util/t/urlparse/parse-url
deleted file mode 100755
index 153afb4a..00000000
--- a/util/t/urlparse/parse-url
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-set -euf
-tempfile="`mktemp /tmp/test.XXXXXXXX`"
-trap "/bin/rm -f $tempfile" EXIT INT
-
-urlparse "http://user:pass@domain.tld/path" > $tempfile
-. $tempfile
-[ $HOSTNAME == "domain.tld" ] && \
- [ $USERNAME == "user" ] && \
- [ $PASSWORD == "pass" ] && \
- [ $URIPATH == "/path" ]
-