diff options
author | makefu <github@syntax-fehler.de> | 2013-09-02 19:34:59 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-09-02 19:34:59 +0200 |
commit | 4f8ac29f0ca730d48212282605cd61c654a42529 (patch) | |
tree | 7b3a6ce5e2d73ce7b495557d0962288047b42770 /util/t/urlparse | |
parent | a3675799d1d9a0e7879071b23f1cc066c709efd0 (diff) |
urlparse ->uriparse
Diffstat (limited to 'util/t/urlparse')
-rwxr-xr-x | util/t/urlparse/parse-url | 12 |
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" ] - |