We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ece316 commit 73935a6Copy full SHA for 73935a6
libs/network/test/http_url_test.cpp
@@ -25,6 +25,9 @@ BOOST_AUTO_TEST_CASE(http_url_test) {
25
26
uri_type instance(string_type(boost::begin(url), boost::end(url)));
27
BOOST_REQUIRE(uri::is_valid(instance));
28
+ BOOST_CHECK_EQUAL(instance.raw(), url);
29
+ string_type scheme_ = uri::scheme(instance);
30
+ BOOST_CHECK_EQUAL(scheme_, scheme);
31
BOOST_CHECK(boost::equal(uri::scheme(instance), scheme));
32
BOOST_CHECK(boost::equal(uri::host(instance), host));
33
BOOST_CHECK_EQUAL(uri::port(instance), port);
0 commit comments