mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
add unit tests for getNullable
This commit is contained in:
parent
4ff7f5aa9c
commit
c73172e986
@ -169,7 +169,19 @@ TEST(optionalValueAt, existing) {
|
||||
TEST(optionalValueAt, empty) {
|
||||
auto json = R"({})"_json;
|
||||
|
||||
ASSERT_EQ(optionalValueAt(json, "string2"), std::nullopt);
|
||||
ASSERT_EQ(optionalValueAt(json, "string"), std::nullopt);
|
||||
}
|
||||
|
||||
TEST(getNullable, null) {
|
||||
auto json = R"(null)"_json;
|
||||
|
||||
ASSERT_EQ(getNullable(json), std::nullopt);
|
||||
}
|
||||
|
||||
TEST(getNullable, empty) {
|
||||
auto json = R"({})"_json;
|
||||
|
||||
ASSERT_EQ(getNullable(json), std::optional { R"({})"_json });
|
||||
}
|
||||
|
||||
} /* namespace nix */
|
||||
|
Loading…
Reference in New Issue
Block a user