blob: 2de0e7ec09872007c1bf008dfcbd66914993dd52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require_relative '../../../spec_helper'
require 'uri'
describe "URI::Generic#host" do
ruby_version_is "3.2" do
# https://hackerone.com/reports/156615
it "returns empty string when host is empty" do
URI.parse('http:////foo.com').host.should == ''
end
end
end
describe "URI::Generic#host=" do
it "needs to be reviewed for spec completeness"
end
|