public void ChangesHostName()
        {
            var builder = new HttpUrlBuilder("http://host1:1337/path");

            builder.WithHost("host2");

            Assert.Equal("http://host2:1337/path", builder.ToString());
        }