C++ interpreter API: add a Value::Value(int) constructor (#974)

This commit is contained in:
Olivier Goffart 2022-02-21 14:00:51 +01:00 committed by GitHub
parent ea2e91ece9
commit 350f0d0d6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -36,6 +36,11 @@ SCENARIO("Value API")
auto number_opt = value.to_number();
REQUIRE(number_opt.has_value());
REQUIRE(number_opt.value() == number);
Value v2 = 42;
REQUIRE(v2.type() == Value::Type::Number);
REQUIRE(v2 == value);
REQUIRE(*v2.to_number() == number);
}
SECTION("Construct a bool")