1
0
mirror of https://github.com/nlohmann/json.git synced 2025-08-16 13:22:00 +03:00

minor change

This commit is contained in:
Niels
2015-02-15 18:43:17 +01:00
parent d31d1ca664
commit b1be1b45ee
3 changed files with 9 additions and 2 deletions

View File

@@ -1080,6 +1080,13 @@ TEST_CASE("object inspection")
auto s = json(42.23).dump();
CHECK(s.find("42.23") != std::string::npos);
}
SECTION("dump and non-ASCII characters")
{
CHECK(json("ä").dump() == "\"ä\"");
CHECK(json("Ö").dump() == "\"Ö\"");
CHECK(json("❤️").dump() == "\"❤️\"");
}
}
SECTION("return the type of the object (explicit)")