mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
add test for recent quick fix
* test-suite/tests/web-uri.test ("string->uri"): Add test for string->uri with hosts beginning in digits.
This commit is contained in:
parent
4f6e8ba7bc
commit
71cc8d96ee
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
;;;; web-uri.test --- URI library -*- mode: scheme; coding: utf-8; -*-
|
||||
;;;;
|
||||
;;;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
|
||||
;;;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc.
|
||||
;;;;
|
||||
;;;; This library is free software; you can redistribute it and/or
|
||||
;;;; modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -143,6 +143,10 @@
|
|||
(uri=? (string->uri "http://foo:/")
|
||||
#:scheme 'http #:host "foo" #:path "/"))
|
||||
|
||||
(pass-if "http://2012.jsconf.us/"
|
||||
(uri=? (string->uri "http://2012.jsconf.us/")
|
||||
#:scheme 'http #:host "2012.jsconf.us" #:path "/"))
|
||||
|
||||
(pass-if "http://foo:not-a-port"
|
||||
(not (string->uri "http://foo:not-a-port")))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue