fixed a bug that was found in the discussion of #274

This commit is contained in:
Niels 2016-07-22 21:40:58 +02:00
parent 51a3829680
commit ddfe86cc49
3 changed files with 10 additions and 2 deletions

View file

@ -10359,6 +10359,14 @@ TEST_CASE("parser class")
CHECK(j_empty_array == json());
}
}
SECTION("copy constructor")
{
json::string_t* s = new json::string_t("[1,2,3,4]");
json::parser p(*s);
delete s;
CHECK(p.parse() == json({1, 2, 3, 4}));
}
}
TEST_CASE("README", "[hide]")