diff options
Diffstat (limited to 'util/t/urlparse/parse-url')
-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" ] - |