more tests for meta() call

This commit is contained in:
Niels Lohmann 2017-02-26 14:34:58 +01:00
parent d1b30250d6
commit bf4d744d1a
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -33,10 +33,14 @@ using nlohmann::json;
TEST_CASE("version information") TEST_CASE("version information")
{ {
SECTION("version()") SECTION("meta()")
{ {
CHECK(json::meta()["name"] == "JSON for Modern C++"); json j = json::meta();
CHECK(json::meta()["version"] == json(
CHECK(j["name"] == "JSON for Modern C++");
CHECK(j["copyright"] == "(C) 2013-2017 Niels Lohmann");
CHECK(j["url"] == "https://github.com/nlohmann/json");
CHECK(j["version"] == json(
{ {
{"string", "2.1.1"}, {"string", "2.1.1"},
{"major", 2}, {"major", 2},