remove std::pair support
This commit is contained in:
parent
fd4a0ecabc
commit
c98364834f
2 changed files with 6 additions and 78 deletions
|
@ -156,20 +156,6 @@ TEST_CASE("constructors")
|
|||
CHECK(j == j_reference);
|
||||
}
|
||||
|
||||
SECTION("std::pair<CompatibleString, T>")
|
||||
{
|
||||
std::pair<std::string, std::string> p{"first", "second"};
|
||||
json j(p);
|
||||
|
||||
CHECK((j.get<decltype(p)>() == p));
|
||||
|
||||
std::pair<std::string, int> p2{"first", 1};
|
||||
// use char const*
|
||||
json j2(std::make_pair("first", 1));
|
||||
|
||||
CHECK((j2.get<decltype(p2)>() == p2));
|
||||
}
|
||||
|
||||
SECTION("std::map<std::string, std::string> #600")
|
||||
{
|
||||
std::map<std::string, std::string> m;
|
||||
|
@ -980,28 +966,6 @@ TEST_CASE("constructors")
|
|||
"[json.exception.type_error.301] cannot create object from initializer list");
|
||||
}
|
||||
|
||||
SECTION("std::pair<CompatibleString, T> with error")
|
||||
{
|
||||
SECTION("wrong field number")
|
||||
{
|
||||
json j{{"too", "much"}, {"string", "fields"}};
|
||||
CHECK_THROWS_AS((j.get<std::pair<std::string, std::string>>()), json::other_error);
|
||||
CHECK_THROWS_WITH((j.get<std::pair<std::string, std::string>>()),
|
||||
"[json.exception.other_error.502] conversion "
|
||||
"to std::pair requires the object to have "
|
||||
"exactly one field, but it has 2");
|
||||
}
|
||||
|
||||
SECTION("wrong JSON type")
|
||||
{
|
||||
json j(42);
|
||||
CHECK_THROWS_AS((j.get<std::pair<std::string, std::string>>()), json::type_error);
|
||||
CHECK_THROWS_WITH((j.get<std::pair<std::string, std::string>>()),
|
||||
"[json.exception.type_error.302] type must be object, but is number");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
SECTION("empty array")
|
||||
{
|
||||
json j = json::array();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue