URLOption: allow uppercase in resource name
This commit is contained in:
@ -158,3 +158,5 @@ def test_url():
|
||||
c.u = 'https://foo.com:8443/'
|
||||
c.u = 'https://foo.com:8443/index.html'
|
||||
raises(ValueError, "c.u = 'https://foo.com:84438989'")
|
||||
c.u = 'https://foo.com:8443/INDEX'
|
||||
raises(ValueError, "c.u = 'https://FOO.COM:8443'")
|
||||
|
Reference in New Issue
Block a user