added additional floating-point tests

This commit is contained in:
Mark Gillard 2022-11-26 22:40:04 +02:00
parent 0a90913abf
commit 0e21bbd6da

View File

@ -375,4 +375,11 @@ b = []
b = [c"]
)"sv);
}
SECTION("tomlplusplus/issues/179") // https://github.com/marzer/tomlplusplus/issues/179
{
parse_expected_value(FILE_LINE_ARGS, "0.848213"sv, 0.848213);
parse_expected_value(FILE_LINE_ARGS, "6.9342"sv, 6.9342);
parse_expected_value(FILE_LINE_ARGS, "-995.9214"sv, -995.9214);
}
}